mirror of
https://github.com/zeldaret/ss
synced 2026-06-22 08:35:39 -04:00
17 lines
285 B
C++
17 lines
285 B
C++
#ifndef D_A_NPC_GRA_H
|
|
#define D_A_NPC_GRA_H
|
|
|
|
#include "d/a/npc/d_a_npc.h"
|
|
#include "s/s_State.hpp"
|
|
|
|
class dAcNpcGra_c : public dAcNpc_c {
|
|
public:
|
|
dAcNpcGra_c() : mStateMgr(*this) {}
|
|
virtual ~dAcNpcGra_c() {}
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dAcNpcGra_c);
|
|
};
|
|
|
|
#endif
|