summaryrefslogtreecommitdiff
path: root/include/d/t/d_t_mist.h
blob: a52e66b0232a3ddd092c9cff47589267f84b9dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef D_T_MIST_H
#define D_T_MIST_H

#include "d/t/d_tg.h"
#include "s/s_State.hpp"

class dMistTag_c : public dTg_c {
public:
    dMistTag_c() : mStateMgr(*this) {}
    virtual ~dMistTag_c() {}

    STATE_FUNC_DECLARE(dMistTag_c, Wait);

private:
    /* 0x??? */ STATE_MGR_DECLARE(dMistTag_c);
};

#endif