mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07: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
35 lines
930 B
C++
35 lines
930 B
C++
#ifndef Z2FXLINEMGR_H
|
|
#define Z2FXLINEMGR_H
|
|
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
|
|
class JKRArchive;
|
|
class JKRHeap;
|
|
|
|
struct Z2FxLineEditNode {};
|
|
|
|
struct Z2FxLineConfig {};
|
|
|
|
struct Z2FxLineMgr : public JASGlobalInstance<Z2FxLineMgr> {
|
|
/* 802BA7DC */ Z2FxLineMgr();
|
|
/* 802BA7FC */ void initDataArc(JKRArchive*, JKRHeap*);
|
|
/* 802BAC28 */ void setLineID(s8, bool, bool);
|
|
/* 802BAC74 */ void setLine(Z2FxLineConfig*, bool, bool);
|
|
/* 802BAE1C */ void setFxForceOff(bool);
|
|
/* 802BAE48 */ void setUnderWaterFx(bool);
|
|
/* 802BAEB8 */ void setSceneFx(s32);
|
|
|
|
/* 0x00 */ int field_0x0;
|
|
/* 0x04 */ void* mFxLineBuffer[4];
|
|
/* 0x14 */ s8 mLineID;
|
|
/* 0x15 */ s8 mFxDataNum;
|
|
/* 0x16 */ bool mSetUnderWaterFx;
|
|
/* 0x18 */ Z2FxLineEditNode* mHIOEdit;
|
|
}; // Size: 0x1C
|
|
|
|
inline Z2FxLineMgr* Z2GetFxLineMgr() {
|
|
return JASGlobalInstance<Z2FxLineMgr>::getInstance();
|
|
}
|
|
|
|
#endif /* Z2FXLINEMGR_H */
|