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

42 lines
1.0 KiB
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_OBJ_WINDOW_H
#define D_A_OBJ_WINDOW_H
2024-01-23 07:42:38 -05:00
#include "f_op/f_op_actor_mng.h"
2024-10-10 07:29:58 -07:00
#include "d/d_bg_s_movebg_actor.h"
#include "d/d_cc_d.h"
2024-01-23 07:42:38 -05:00
2024-05-29 01:49:10 -06:00
/**
* @ingroup actors-objects
* @class daObjWindow_c
* @brief Destructable Kakariko Village Window
*
* @details
*
*/
2024-01-23 07:42:38 -05:00
class daObjWindow_c : public dBgS_MoveBgActor {
public:
/* 80D38758 */ void initBaseMtx();
/* 80D387B8 */ void setBaseMtx();
/* 80D38840 */ int Create();
/* 80D388F0 */ int CreateHeap();
/* 80D38A68 */ cPhs__Step create1st();
/* 80D38B04 */ int Execute(Mtx**);
/* 80D38F28 */ int Draw();
/* 80D39000 */ int Delete();
u8 getType() { return fopAcM_GetParamBit(this, 0, 8); }
u8 getLightInf() { return fopAcM_GetParamBit(this, 8, 8); }
2024-05-29 01:49:10 -06:00
private:
2024-01-23 07:42:38 -05:00
/* 0x5A0 */ request_of_phase_process_class mPhaseReq;
/* 0x5A8 */ J3DModel* mpModel;
/* 0x5AC */ mDoExt_bckAnm* mpBckAnm;
/* 0x5B0 */ u8 mType;
/* 0x5B4 */ dCcD_Stts mStts;
/* 0x5F0 */ dCcD_Cyl mCyl;
};
STATIC_ASSERT(sizeof(daObjWindow_c) == 0x72C);
2021-03-28 22:49:05 +02:00
#endif /* D_A_OBJ_WINDOW_H */