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