mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-13 13:46:33 -04:00
32 lines
715 B
C++
32 lines
715 B
C++
#ifndef D_A_OBJ_SMPLBG_H
|
|
#define D_A_OBJ_SMPLBG_H
|
|
|
|
#include "d/d_bg_s_movebg_actor.h"
|
|
|
|
namespace daObjSmplbg {
|
|
class Act_c : public dBgS_MoveBgActor {
|
|
public:
|
|
void attr() const {}
|
|
void isStop() {}
|
|
void offStop() {}
|
|
void onStop() {}
|
|
void prm_get_type() const {}
|
|
|
|
virtual BOOL CreateHeap();
|
|
virtual BOOL Create();
|
|
cPhs_State Mthd_Create();
|
|
virtual BOOL Delete();
|
|
BOOL Mthd_Delete();
|
|
void set_mtx();
|
|
void init_mtx();
|
|
void exec_qtkhd();
|
|
virtual BOOL Execute(Mtx**);
|
|
virtual BOOL Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
};
|
|
|
|
#endif /* D_A_OBJ_SMPLBG_H */
|