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