mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-08 04:07:13 -04:00
30 lines
601 B
C++
30 lines
601 B
C++
#ifndef D_A_OBJ_SMPLBG_H
|
|
#define D_A_OBJ_SMPLBG_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
namespace daObjSmplbg {
|
|
class Act_c : public fopAc_ac_c {
|
|
public:
|
|
void isStop() {}
|
|
void offStop() {}
|
|
void onStop() {}
|
|
|
|
void CreateHeap();
|
|
void Create();
|
|
void Mthd_Create();
|
|
void Delete();
|
|
void Mthd_Delete();
|
|
void set_mtx();
|
|
void init_mtx();
|
|
void exec_qtkhd();
|
|
void Execute(float(**)[3][4]);
|
|
void Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
};
|
|
|
|
#endif /* D_A_OBJ_SMPLBG_H */
|