mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
221f40e609
* add "global.h" to files that use it * add MSL_C includes to files that use them * remove dolphin includes from headers that don't need them * remove JSupport includes from headers that don't need them * remove JKernel includes from headers that don't need them * remove JUtility includes from headers that don't need them * remove J3D includes from headers that don't need them * remove J2D includes from headers that don't need them * remove JAudio2 includes from headers that don't need them * remove Z2AudioLib includes from headers that don't need them * remove JMessage includes from headers that don't need them * remove JParticle includes from headers that don't need them * remove SComponent includes from headers that don't need them * remove dol includes from headers that don't need them * sort includes
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#ifndef D_D_KY_THUNDER_H
|
|
#define D_D_KY_THUNDER_H
|
|
|
|
#include "f_op/f_op_kankyo.h"
|
|
#include "m_Do/m_Do_ext.h"
|
|
|
|
class JKRSolidHeap;
|
|
|
|
class dThunder_modelInfo_c {
|
|
public:
|
|
/* 0x00 */ J3DModel* mpModel;
|
|
/* 0x04 */ mDoExt_invisibleModel mInvisModel;
|
|
/* 0x0C */ mDoExt_brkAnm mBrk;
|
|
/* 0x24 */ mDoExt_btpAnm mBtp;
|
|
}; // Size: 0x3C
|
|
|
|
class dThunder_c : public kankyo_class {
|
|
public:
|
|
/* 801ADF58 */ int createHeap();
|
|
/* 801ADFB4 */ void adjustHeap();
|
|
/* 801AE458 */ int create();
|
|
inline int draw();
|
|
inline int execute(dThunder_c* i_thunder);
|
|
inline int thunder_delete(dThunder_c* i_thunder);
|
|
|
|
~dThunder_c() { mDoExt_destroySolidHeap(mpHeap); }
|
|
|
|
private:
|
|
/* 0x0F8 */ JKRSolidHeap* mpHeap;
|
|
/* 0x0FC */ dThunder_modelInfo_c mModelInfo;
|
|
/* 0x138 */ cXyz field_0x138;
|
|
/* 0x144 */ cXyz mThunderPos;
|
|
/* 0x150 */ cXyz field_0x150;
|
|
/* 0x15C */ f32 field_0x15c;
|
|
/* 0x160 */ u8 unk_0x160[4];
|
|
/* 0x164 */ f32 mBrkSpeed;
|
|
/* 0x168 */ s16 field_0x168;
|
|
/* 0x16A */ s16 field_0x16a;
|
|
/* 0x16C */ s16 field_0x16c;
|
|
};
|
|
|
|
#endif /* D_D_KY_THUNDER_H */
|