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