blob: 92d226b23153419a12387d555efde61ac16a45fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef D_A_OBJ_ROLL_PILLAR_H
#define D_A_OBJ_ROLL_PILLAR_H
#include "d/a/obj/d_a_obj_base.h"
#include "s/s_State.hpp"
class dAcORollPillar_c : public dAcObjBase_c {
public:
dAcORollPillar_c() : mStateMgr(*this) {}
virtual ~dAcORollPillar_c() {}
STATE_FUNC_DECLARE(dAcORollPillar_c, Wait);
STATE_FUNC_DECLARE(dAcORollPillar_c, Rotate);
STATE_FUNC_DECLARE(dAcORollPillar_c, TimerWait);
private:
/* 0x??? */ STATE_MGR_DECLARE(dAcORollPillar_c);
};
#endif
|