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

44 lines
848 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_OBJ_SEKIZO_H
#define D_A_OBJ_SEKIZO_H
2024-10-10 07:29:58 -07:00
#include "d/d_bg_s_movebg_actor.h"
2023-12-07 01:01:42 +01:00
#include "f_op/f_op_actor_mng.h"
2021-03-28 22:49:05 +02:00
2024-05-29 01:49:10 -06:00
/**
* @ingroup actors-objects
* @class daObj_Sekizo_c
* @brief Stone Statue
*
* @details
*
*/
2024-03-10 19:12:33 -04:00
class daObj_Sekizo_c : public dBgS_MoveBgActor {
public:
2025-11-30 14:23:42 -08:00
cPhs__Step create();
2024-03-10 19:12:33 -04:00
2025-11-30 14:23:42 -08:00
int CreateHeap();
int Create();
int Delete();
int Execute(Mtx**);
int Draw();
void initBaseMtx();
void setBaseMtx();
2024-03-10 19:12:33 -04:00
2024-05-29 01:49:10 -06:00
private:
2024-03-10 19:12:33 -04:00
/* 0x5A0 */ u32 field_0x5a0;
/* 0x5A4 */ request_of_phase_process_class mPhaseReq;
/* 0x5AC */ J3DModel* mpModel;
/* 0x5B0 */ u8 field_0x5b0;
/* 0x5B1 */ bool field_0x5b1;
/* 0x5B2 */ bool field_0x5b2;
2024-05-29 01:49:10 -06:00
};
2024-03-10 19:12:33 -04:00
STATIC_ASSERT(sizeof(daObj_Sekizo_c) == 0x5B4);
class daObj_Sekizo_Param_c {
public:
2025-11-30 14:23:42 -08:00
virtual ~daObj_Sekizo_Param_c() {}
2024-03-10 19:12:33 -04:00
};
2021-03-28 22:49:05 +02:00
#endif /* D_A_OBJ_SEKIZO_H */