mirror of
https://github.com/zeldaret/ss
synced 2026-06-01 01:39:17 -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
24 lines
658 B
C++
24 lines
658 B
C++
#ifndef D_A_INSECT_BUTTERFLY_H
|
|
#define D_A_INSECT_BUTTERFLY_H
|
|
|
|
#include "d/a/obj/d_a_obj_base.h"
|
|
#include "s/s_State.hpp"
|
|
#include "s/s_StateMgr.hpp"
|
|
|
|
class dAcInsectButterfly_c : public dAcObjBase_c {
|
|
public:
|
|
dAcInsectButterfly_c() : mStateMgr(*this, sStateID::null) {}
|
|
virtual ~dAcInsectButterfly_c() {}
|
|
|
|
STATE_FUNC_DECLARE(dAcInsectButterfly_c, Move);
|
|
STATE_FUNC_DECLARE(dAcInsectButterfly_c, Escape);
|
|
STATE_FUNC_DECLARE(dAcInsectButterfly_c, Fly);
|
|
STATE_FUNC_DECLARE(dAcInsectButterfly_c, Finalize);
|
|
STATE_FUNC_DECLARE(dAcInsectButterfly_c, Dead);
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dAcInsectButterfly_c);
|
|
};
|
|
|
|
#endif
|