blob: a1a82400282ae9fa56330abf46ebe932a364f00f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef D_A_INSECT_BEETLE_H
#define D_A_INSECT_BEETLE_H
#include "d/a/obj/d_a_obj_base.h"
#include "s/s_State.hpp"
class dAcInsectBeetle_c : public dAcObjBase_c {
public:
dAcInsectBeetle_c() : mStateMgr(*this) {}
virtual ~dAcInsectBeetle_c() {}
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Wait);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Walk);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Escape);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Fly);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Fall);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Getup);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Finalize);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Dead);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, EscapeChild);
private:
/* 0x??? */ STATE_MGR_DECLARE(dAcInsectBeetle_c);
};
#endif
|