mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-02 01:59:56 -04:00
21 lines
366 B
C++
21 lines
366 B
C++
#ifndef D_A_OBJ_VMSDZ_H
|
|
#define D_A_OBJ_VMSDZ_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daObjVmsdz_c : public fopAc_ac_c {
|
|
public:
|
|
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_VMSDZ_H */
|