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

46 lines
952 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_OBJ_KTONFIRE_H
#define D_A_OBJ_KTONFIRE_H
2024-05-29 01:49:10 -06:00
#include "f_op/f_op_actor_mng.h"
2025-08-30 15:10:43 -07:00
#include "d/d_cc_d.h"
2024-05-29 01:49:10 -06:00
/**
* @ingroup actors-objects
* @class daKtOnFire_c
* @brief Lantern Fire
*
* @details
*
*/
class daKtOnFire_c : public fopAc_ac_c {
public:
2025-11-30 14:23:42 -08:00
void setBaseMtx();
int create();
void lightInit();
void setLight();
void cutLight();
int Execute();
int Draw();
int Delete();
2024-05-29 01:49:10 -06:00
2025-08-30 15:10:43 -07:00
static const dCcD_SrcGObjInf mCcDObjInfo;
static dCcD_SrcCyl mCcDCyl;
2024-05-29 01:49:10 -06:00
private:
2025-08-30 15:10:43 -07:00
/* 0x568 */ dCcD_Stts mCcStts;
/* 0x5A4 */ dCcD_Cyl mCcCyl;
/* 0x6E0 */ u8 mWaitTime;
/* 0x6E1 */ u8 mIsSwitch;
/* 0x6E2 */ u8 field_0x6e2;
2025-02-19 06:52:04 -08:00
/* 0x6E4 */ cXyz mTorchPos;
2025-08-30 15:10:43 -07:00
/* 0x6F0 */ u32 field_0x6f0;
/* 0x6F4 */ u32 field_0x6f4;
/* 0x6F8 */ u32 field_0x6f8;
2025-02-19 06:52:04 -08:00
/* 0x6FC */ cXyz mLightPos;
/* 0x708 */ LIGHT_INFLUENCE mLight;
2024-05-29 01:49:10 -06:00
};
2024-06-10 01:34:52 -06:00
2024-05-29 01:49:10 -06:00
STATIC_ASSERT(sizeof(daKtOnFire_c) == 0x728);
2021-03-28 22:49:05 +02:00
#endif /* D_A_OBJ_KTONFIRE_H */