blob: 4d0a346d793abd2fbb86ce2f51e798ce8d6acb6f (
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_NPC_SALBAGE_ROBOT_FLY_H
#define D_A_NPC_SALBAGE_ROBOT_FLY_H
#include "d/a/npc/d_a_npc.h"
#include "s/s_State.hpp"
class dAcNpcSalbageRobotFly_c : public dAcNpc_c {
public:
dAcNpcSalbageRobotFly_c() : mStateMgr(*this) {}
virtual ~dAcNpcSalbageRobotFly_c() {}
STATE_FUNC_DECLARE(dAcNpcSalbageRobotFly_c, ChasePlayerBird);
STATE_FUNC_DECLARE(dAcNpcSalbageRobotFly_c, FlyWithPlayerBird);
STATE_FUNC_DECLARE(dAcNpcSalbageRobotFly_c, Leave);
STATE_FUNC_DECLARE(dAcNpcSalbageRobotFly_c, EscapeToUpward);
private:
/* 0x??? */ STATE_MGR_DECLARE(dAcNpcSalbageRobotFly_c);
};
#endif
|