summaryrefslogtreecommitdiff
path: root/include/d/a/d_a_insect_dragonfly.h
blob: afa73d8045be55fde0eebdb0308d0c9bc609a9d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef D_A_INSECT_DRAGONFLY_H
#define D_A_INSECT_DRAGONFLY_H

#include "d/a/obj/d_a_obj_base.h"
#include "s/s_State.hpp"

class dAcInsectDragonfly_c : public dAcObjBase_c {
public:
    dAcInsectDragonfly_c() : mStateMgr(*this) {}
    virtual ~dAcInsectDragonfly_c() {}

    STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Wait);
    STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Move);
    STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Escape);
    STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Fly);
    STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Finalize);
    STATE_FUNC_DECLARE(dAcInsectDragonfly_c, Dead);

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

#endif