Files
tp/include/d/d_door_param2.h
T
TakaRikka 5867eaf68b general cleanup, d_menu_quit / d_a_obj_testcube mostly done, d_msg_scrn_explain debug (#3065)
* typedef for cPhs_Step

* make sdk includes consistent

* d_menu_quit / d_msg_scrn_explain debug

* d_a_obj_testcube mostly done

* d_debug_pad mostly done

* jstudio tool library headers

* some JStudioCameraEditor headers

* d_jcam_editor mostly done

* try fixing some shield regressions

* d_bg_parts mostly done

* fix merge errors

* debug fix
2026-01-24 23:36:23 -08:00

31 lines
1.0 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:
static int getKind(fopAc_ac_c* i_actor);
static u32 getDoorModel(fopAc_ac_c* i_actor);
static u8 getFrontOption(fopAc_ac_c* i_actor);
static u8 getBackOption(fopAc_ac_c* i_actor);
static u8 getFRoomNo(fopAc_ac_c* i_actor);
static u8 getBRoomNo(fopAc_ac_c* i_actor);
static u8 getSwbit(fopAc_ac_c* i_actor);
static u8 getSwbit2(fopAc_ac_c* i_actor);
static u8 getSwbit3(fopAc_ac_c* i_actor);
static int isMsgDoor(fopAc_ac_c* i_actor);
static u8 getEventNo(fopAc_ac_c* i_actor);
static u8 getEventNo2(fopAc_ac_c* i_actor);
static u16 getMsgNo(fopAc_ac_c* i_actor);
static u8 getExitNo(fopAc_ac_c* i_actor);
static u32 getFLightInf(fopAc_ac_c* i_actor);
static u32 getBLightInf(fopAc_ac_c* i_actor);
static u32 getMFLightInf(fopAc_ac_c* i_actor);
static u32 getMBLightInf(fopAc_ac_c* i_actor);
};
#endif /* D_D_DOOR_PARAM2_H */