blob: 169a1c1c549aefc8ffd7b72c8d9da671619422c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef D_T_KYTAG_H
#define D_T_KYTAG_H
#include "d/t/d_tg.h"
#include "s/s_State.hpp"
class dKytagTag_c : public dTg_c {
public:
dKytagTag_c() : mStateMgr(*this) {}
virtual ~dKytagTag_c() {}
STATE_FUNC_DECLARE(dKytagTag_c, Wait);
private:
/* 0x??? */ STATE_MGR_DECLARE(dKytagTag_c);
};
#endif
|