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