mirror of
https://github.com/zeldaret/ss
synced 2026-08-09 18:57:50 -04:00
17 lines
297 B
C++
17 lines
297 B
C++
#ifndef D_A_NPC_TERRY_H
|
|
#define D_A_NPC_TERRY_H
|
|
|
|
#include "d/a/npc/d_a_npc.h"
|
|
#include "s/s_State.hpp"
|
|
|
|
class dAcNpcTerry_c : public dAcNpc_c {
|
|
public:
|
|
dAcNpcTerry_c() : mStateMgr(*this) {}
|
|
virtual ~dAcNpcTerry_c() {}
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dAcNpcTerry_c);
|
|
};
|
|
|
|
#endif
|