Files
ss/include/d/t/d_t_mole_prohibit.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

24 lines
539 B
C++

#ifndef D_T_MOLE_PROHIBIT_H
#define D_T_MOLE_PROHIBIT_H
#include "d/t/d_tg.h"
#include "s/s_State.hpp"
#include "s/s_StateMgr.hpp"
class dTgMoleProhibit_c : public dTg_c {
public:
dTgMoleProhibit_c() : mStateMgr(*this, sStateID::null) {}
virtual ~dTgMoleProhibit_c() {}
virtual int create() override;
virtual int actorExecute() override;
virtual int draw() override;
virtual int doDelete() override;
STATE_FUNC_DECLARE(dTgMoleProhibit_c, Wait);
private:
STATE_MGR_DECLARE(dTgMoleProhibit_c);
};
#endif