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

42 lines
1010 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_B_ZANT_SIMA_H
#define D_A_B_ZANT_SIMA_H
2024-10-10 07:29:58 -07:00
#include "d/d_bg_w.h"
2023-09-02 07:39:54 -06:00
#include "f_op/f_op_actor_mng.h"
2024-04-12 00:10:30 -06:00
/**
* @ingroup actors-enemies
2024-06-10 01:34:52 -06:00
* @class daB_ZANTS_c
2024-04-12 00:10:30 -06:00
* @brief Zant (Goron Mines Phase)
2024-06-10 01:34:52 -06:00
*
* @details Palace of Twilight dungeon boss. This is the actor used during the Goron Mines part of the fight.
*
2024-04-12 00:10:30 -06:00
*/
2023-09-02 07:39:54 -06:00
class daB_ZANTS_c : public fopAc_ac_c {
public:
2025-11-30 14:23:42 -08:00
int draw();
void action();
int execute();
int _delete();
int CreateHeap();
int create();
2023-09-02 07:39:54 -06:00
/* 0x568 */ request_of_phase_process_class mPhase;
/* 0x570 */ J3DModel* mpModel;
/* 0x574 */ mDoExt_brkAnm* mpBrkAnm;
/* 0x578 */ mDoExt_btkAnm* mpBtkAnm;
/* 0x57C */ u32 mPlayerID;
/* 0x580 */ u32 mBossID;
/* 0x584 */ u8 mSinkTimers[2];
/* 0x586 */ bool mSinkPlayer;
/* 0x587 */ bool mSinkZant;
/* 0x588 */ f32 mHeight;
/* 0x58C */ csXyz mRotation;
/* 0x594 */ Mtx mMtx;
2023-09-02 07:39:54 -06:00
/* 0x5C4 */ dBgW* mpBgW;
};
2021-03-28 22:49:05 +02:00
2024-06-10 01:34:52 -06:00
STATIC_ASSERT(sizeof(daB_ZANTS_c) == 0x5C8);
2021-03-28 22:49:05 +02:00
#endif /* D_A_B_ZANT_SIMA_H */