mirror of
https://github.com/zeldaret/ss
synced 2026-06-04 10:48:38 -04:00
24 lines
666 B
C++
24 lines
666 B
C++
#ifndef D_A_INSECT_DRAGONFLY_H
|
|
#define D_A_INSECT_DRAGONFLY_H
|
|
|
|
#include "d/a/obj/d_a_obj_base.h"
|
|
#include "s/s_State.hpp"
|
|
|
|
class dAcInsectDragonfly_c : public dAcObjBase_c {
|
|
public:
|
|
dAcInsectDragonfly_c() : mStateMgr(*this) {}
|
|
virtual ~dAcInsectDragonfly_c() {}
|
|
|
|
STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Wait);
|
|
STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Move);
|
|
STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Escape);
|
|
STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Fly);
|
|
STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Finalize);
|
|
STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Dead);
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dAcInsectDragonfly_c);
|
|
};
|
|
|
|
#endif
|