Files
ss/include/d/a/d_a_nusi_npc.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

18 lines
340 B
C++

#ifndef D_A_NUSI_NPC_H
#define D_A_NUSI_NPC_H
#include "d/a/e/d_a_en_base.h"
#include "s/s_State.hpp"
#include "s/s_StateMgr.hpp"
class dAcNusiNpc_c : public dAcEnBase_c {
public:
dAcNusiNpc_c() : mStateMgr(*this, sStateID::null) {}
virtual ~dAcNusiNpc_c() {}
private:
/* 0x??? */ STATE_MGR_DECLARE(dAcNusiNpc_c);
};
#endif