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

28 lines
829 B
C++

#ifndef D_A_INSECT_BEETLE_H
#define D_A_INSECT_BEETLE_H
#include "d/a/obj/d_a_obj_base.h"
#include "s/s_State.hpp"
#include "s/s_StateMgr.hpp"
class dAcInsectBeetle_c : public dAcObjBase_c {
public:
dAcInsectBeetle_c() : mStateMgr(*this, sStateID::null) {}
virtual ~dAcInsectBeetle_c() {}
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Wait);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Walk);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Escape);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Fly);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Fall);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Getup);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Finalize);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, Dead);
STATE_FUNC_DECLARE(dAcInsectBeetle_c, EscapeChild);
private:
/* 0x??? */ STATE_MGR_DECLARE(dAcInsectBeetle_c);
};
#endif