Files
tp/include/d/actor/d_a_obj_tgake.h
T

42 lines
946 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_OBJ_TGAKE_H
#define D_A_OBJ_TGAKE_H
#include "f_op/f_op_actor_mng.h"
2024-10-10 07:29:58 -07:00
#include "d/d_bg_s_movebg_actor.h"
2024-05-29 01:49:10 -06:00
/**
* @ingroup actors-objects
* @class daObjGake_c
* @brief Howling Cliff
*
* @details
*
*/
class daObjGake_c : public dBgS_MoveBgActor {
public:
2025-11-30 14:23:42 -08:00
void initBaseMtx();
void setBaseMtx();
int create1st();
2025-11-30 14:23:42 -08:00
virtual int CreateHeap();
virtual int Create();
virtual int Execute(Mtx**);
virtual int Draw();
virtual int Delete();
u16 getEventBit1() { return fopAcM_GetParamBit(this, 0, 10); }
u16 getEventBit2() { return fopAcM_GetParamBit(this, 10, 10); }
u8 getType() { return fopAcM_GetParamBit(this, 0x14, 8); }
2024-05-29 01:49:10 -06:00
private:
/* 0x5A0 */ request_of_phase_process_class mPhase;
/* 0x5A8 */ J3DModel* mpModel;
/* 0x5AC */ u16 mEventBit1;
/* 0x5AE */ u16 mEventBit2;
/* 0x5B0 */ u8 mHide;
};
2024-06-10 01:34:52 -06:00
2024-05-29 01:49:10 -06:00
STATIC_ASSERT(sizeof(daObjGake_c) == 0x5B4);
2021-03-28 22:49:05 +02:00
#endif /* D_A_OBJ_TGAKE_H */