mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
23 lines
421 B
C++
23 lines
421 B
C++
#ifndef D_A_OBJ_VMSMS_H
|
|
#define D_A_OBJ_VMSMS_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daObjVmsms_c : public fopAc_ac_c {
|
|
public:
|
|
void check_demo() const; // weak but not inlined?
|
|
|
|
void solidHeapCB(fopAc_ac_c*);
|
|
void create_heap();
|
|
s32 _create();
|
|
BOOL _delete();
|
|
void init_mtx();
|
|
BOOL _execute();
|
|
BOOL _draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_OBJ_VMSMS_H */
|