mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-25 15:25:07 -04:00
27 lines
535 B
C++
27 lines
535 B
C++
#ifndef D_A_OBJ_TOWER_H
|
|
#define D_A_OBJ_TOWER_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
#include "d/d_bg_w.h"
|
|
|
|
class daObjTower_c : public fopAc_ac_c {
|
|
public:
|
|
inline s32 _create();
|
|
inline BOOL _delete();
|
|
inline BOOL _draw();
|
|
inline BOOL _execute();
|
|
|
|
void CreateHeap();
|
|
void CreateInit();
|
|
void set_mtx();
|
|
|
|
public:
|
|
/* 0x290 */ u8 m290[0x298 - 0x290];
|
|
/* 0x298 */ J3DModel* mpModel;
|
|
/* 0x29C */ dBgW* mpBgW;
|
|
/* 0x2A0 */ Mtx mMtx;
|
|
/* 0x2D0 */ u8 m2D0[0x2D4 - 0x2D0];
|
|
};
|
|
|
|
#endif /* D_A_OBJ_TOWER_H */
|