mirror of
https://github.com/zeldaret/ss
synced 2026-06-03 18:36:16 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
21 lines
438 B
C++
21 lines
438 B
C++
#ifndef D_T_SHIP_FLOOD_H
|
|
#define D_T_SHIP_FLOOD_H
|
|
|
|
#include "d/a/d_a_base.h"
|
|
#include "s/s_State.hpp"
|
|
#include "s/s_StateMgr.hpp"
|
|
|
|
class dTgShipFlood_c : public dAcBase_c {
|
|
public:
|
|
dTgShipFlood_c() : mStateMgr(*this, sStateID::null) {}
|
|
virtual ~dTgShipFlood_c() {}
|
|
|
|
STATE_FUNC_DECLARE(dTgShipFlood_c, Wait);
|
|
STATE_FUNC_DECLARE(dTgShipFlood_c, Stop);
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dTgShipFlood_c);
|
|
};
|
|
|
|
#endif
|