mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-31 01:15:27 -04:00
31 lines
670 B
C++
31 lines
670 B
C++
#ifndef D_A_OBJ_MTEST_H
|
|
#define D_A_OBJ_MTEST_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
namespace daObjMtest {
|
|
class Act_c : public fopAc_ac_c {
|
|
public:
|
|
void prm_get_arg0() const {}
|
|
void prm_get_arg1() const {}
|
|
void prm_get_swSave() const {}
|
|
void prm_get_type() const {}
|
|
|
|
void chk_appear();
|
|
void CreateHeap();
|
|
s32 Create();
|
|
void Mthd_Create();
|
|
BOOL Delete();
|
|
void Mthd_Delete();
|
|
void set_mtx();
|
|
void init_mtx();
|
|
void Execute(float(**)[3][4]);
|
|
BOOL Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
};
|
|
|
|
#endif /* D_A_OBJ_MTEST_H */
|