mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
5867eaf68b
* typedef for cPhs_Step * make sdk includes consistent * d_menu_quit / d_msg_scrn_explain debug * d_a_obj_testcube mostly done * d_debug_pad mostly done * jstudio tool library headers * some JStudioCameraEditor headers * d_jcam_editor mostly done * try fixing some shield regressions * d_bg_parts mostly done * fix merge errors * debug fix
42 lines
935 B
C++
42 lines
935 B
C++
#ifndef D_A_OBJ_WINDOW_H
|
|
#define D_A_OBJ_WINDOW_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
#include "d/d_bg_s_movebg_actor.h"
|
|
#include "d/d_cc_d.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daObjWindow_c
|
|
* @brief Destructable Kakariko Village Window
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daObjWindow_c : public dBgS_MoveBgActor {
|
|
public:
|
|
void initBaseMtx();
|
|
void setBaseMtx();
|
|
int Create();
|
|
int CreateHeap();
|
|
cPhs_Step create1st();
|
|
int Execute(Mtx**);
|
|
int Draw();
|
|
int Delete();
|
|
|
|
u8 getType() { return fopAcM_GetParamBit(this, 0, 8); }
|
|
u8 getLightInf() { return fopAcM_GetParamBit(this, 8, 8); }
|
|
|
|
private:
|
|
/* 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);
|
|
|
|
#endif /* D_A_OBJ_WINDOW_H */
|