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

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

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

    STATE_FUNC_DECLARE(dTgHarp_c, Wait);

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

#endif