blob: 0ace178bcb84b08d5b3281ca6b597703bdad9155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef D_A_NUSI_NPC_H
#define D_A_NUSI_NPC_H
#include "d/a/e/d_a_en_base.h"
#include "s/s_State.hpp"
class dAcNusiNpc_c : public dAcEnBase_c {
public:
dAcNusiNpc_c() : mStateMgr(*this) {}
virtual ~dAcNusiNpc_c() {}
private:
/* 0x??? */ STATE_MGR_DECLARE(dAcNusiNpc_c);
};
#endif
|