mirror of
https://github.com/zeldaret/ss.git
synced 2024-12-04 19:56:31 +00:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
22 lines
433 B
C++
22 lines
433 B
C++
#ifndef D_A_KANBAN_H
|
|
#define D_A_KANBAN_H
|
|
|
|
#include "d/a/obj/d_a_obj_base.h"
|
|
#include "s/s_State.hpp"
|
|
#include "s/s_StateMgr.hpp"
|
|
|
|
class dAcKanban_c : public dAcObjBase_c {
|
|
public:
|
|
dAcKanban_c();
|
|
virtual ~dAcKanban_c();
|
|
|
|
STATE_FUNC_DECLARE(dAcKanban_c, Wait);
|
|
STATE_FUNC_DECLARE(dAcKanban_c, Message);
|
|
STATE_FUNC_DECLARE(dAcKanban_c, PullOut);
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dAcKanban_c);
|
|
};
|
|
|
|
#endif
|