mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04: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
23 lines
514 B
C++
23 lines
514 B
C++
#ifndef D_T_INSECT_H
|
|
#define D_T_INSECT_H
|
|
|
|
#include "d/a/d_a_base.h"
|
|
#include "s/s_State.hpp"
|
|
#include "s/s_StateMgr.hpp"
|
|
|
|
class dTgInsect_c : public dAcBase_c {
|
|
public:
|
|
dTgInsect_c() : mStateMgr(*this, sStateID::null) {}
|
|
virtual ~dTgInsect_c() {}
|
|
|
|
STATE_FUNC_DECLARE(dTgInsect_c, Wait);
|
|
STATE_FUNC_DECLARE(dTgInsect_c, WaitCreate);
|
|
STATE_FUNC_DECLARE(dTgInsect_c, WaitForceEscape);
|
|
STATE_FUNC_DECLARE(dTgInsect_c, End);
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dTgInsect_c);
|
|
};
|
|
|
|
#endif
|