mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
19 lines
356 B
C++
19 lines
356 B
C++
#ifndef D_A_OBJ_SANDBAG_H
|
|
#define D_A_OBJ_SANDBAG_H
|
|
|
|
#include "d/a/obj/d_a_obj_base.h"
|
|
#include "s/s_State.hpp"
|
|
|
|
class dAcOSandbag_c : public dAcObjBase_c {
|
|
public:
|
|
dAcOSandbag_c() : mStateMgr(*this) {}
|
|
virtual ~dAcOSandbag_c() {}
|
|
|
|
STATE_FUNC_DECLARE(dAcOSandbag_c, Wait);
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dAcOSandbag_c);
|
|
};
|
|
|
|
#endif
|