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
31 lines
1.3 KiB
C++
31 lines
1.3 KiB
C++
#ifndef D_D_DOOR_PARAM2_H
|
|
#define D_D_DOOR_PARAM2_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class fopAc_ac_c;
|
|
|
|
class door_param2_c {
|
|
public:
|
|
/* 8003A188 */ static u8 getKind(fopAc_ac_c* i_actor);
|
|
/* 8003A194 */ static u8 getDoorModel(fopAc_ac_c* i_actor);
|
|
/* 8003A1A0 */ static u8 getFrontOption(fopAc_ac_c* i_actor);
|
|
/* 8003A1AC */ static u8 getBackOption(fopAc_ac_c* i_actor);
|
|
/* 8003A1B8 */ static u8 getFRoomNo(fopAc_ac_c* i_actor);
|
|
/* 8003A1C4 */ static u8 getBRoomNo(fopAc_ac_c* i_actor);
|
|
/* 8003A1D0 */ static u8 getSwbit(fopAc_ac_c* i_actor);
|
|
/* 8003A1DC */ static u8 getSwbit2(fopAc_ac_c* i_actor);
|
|
/* 8003A1E8 */ static u8 getSwbit3(fopAc_ac_c* i_actor);
|
|
/* 8003A1F4 */ static u8 isMsgDoor(fopAc_ac_c* i_actor);
|
|
/* 8003A200 */ static u8 getEventNo(fopAc_ac_c* i_actor);
|
|
/* 8003A20C */ static u8 getEventNo2(fopAc_ac_c* i_actor);
|
|
/* 8003A218 */ static u16 getMsgNo(fopAc_ac_c* i_actor);
|
|
/* 8003A224 */ static u8 getExitNo(fopAc_ac_c* i_actor);
|
|
/* 8003A230 */ static u8 getFLightInf(fopAc_ac_c* i_actor);
|
|
/* 8003A23C */ static u8 getBLightInf(fopAc_ac_c* i_actor);
|
|
/* 8003A248 */ static u8 getMFLightInf(fopAc_ac_c* i_actor);
|
|
/* 8003A254 */ static u8 getMBLightInf(fopAc_ac_c* i_actor);
|
|
};
|
|
|
|
#endif /* D_D_DOOR_PARAM2_H */
|