Files
ss/include/d/a/e/d_a_e_tn2.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

22 lines
463 B
C++

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