mirror of
https://github.com/zeldaret/oot.git
synced 2025-06-08 09:31:52 +00:00
Move type enum to header
This commit is contained in:
parent
c7d505b604
commit
8325716355
2 changed files with 23 additions and 23 deletions
|
@ -90,19 +90,6 @@ void EnRu1_DrawNothing(EnRu1* this, PlayState* play);
|
|||
void EnRu1_DrawOpa(EnRu1* this, PlayState* play);
|
||||
void EnRu1_DrawXlu(EnRu1* this, PlayState* play);
|
||||
|
||||
typedef enum EnRu1Type {
|
||||
ENRU1_TYPE_BOSS_ROOM,
|
||||
ENRU1_TYPE_FOUNTAIN,
|
||||
ENRU1_TYPE_HOLES_ROOM,
|
||||
ENRU1_TYPE_BASEMENT,
|
||||
ENRU1_TYPE_SAPPHIRE_ROOM,
|
||||
ENRU1_TYPE_BESIDE_KZ,
|
||||
ENRU1_TYPE_BESIDE_DOOR_SWITCH,
|
||||
#if DEBUG_FEATURES
|
||||
ENRU1_TYPE_DEBUG = 10,
|
||||
#endif
|
||||
} EnRu1Type;
|
||||
|
||||
static ColliderCylinderInitType1 sCylinderInit1 = {
|
||||
{
|
||||
COL_MATERIAL_HIT0,
|
||||
|
|
|
@ -60,6 +60,19 @@ typedef struct EnRu1 {
|
|||
/* 0x0374 */ NpcInteractInfo interactInfo;
|
||||
} EnRu1; // size = 0x039C
|
||||
|
||||
typedef enum EnRu1Type {
|
||||
/* 0 */ ENRU1_TYPE_BOSS_ROOM,
|
||||
/* 1 */ ENRU1_TYPE_FOUNTAIN,
|
||||
/* 2 */ ENRU1_TYPE_HOLES_ROOM,
|
||||
/* 3 */ ENRU1_TYPE_BASEMENT,
|
||||
/* 4 */ ENRU1_TYPE_SAPPHIRE_ROOM,
|
||||
/* 5 */ ENRU1_TYPE_BESIDE_KZ,
|
||||
/* 6 */ ENRU1_TYPE_BESIDE_DOOR_SWITCH,
|
||||
#if DEBUG_FEATURES
|
||||
/* 10 */ ENRU1_TYPE_DEBUG = 10,
|
||||
#endif
|
||||
} EnRu1Type;
|
||||
|
||||
typedef enum RutoLimb {
|
||||
/* 0 */ RUTO_CHILD_NONE,
|
||||
/* 1 */ RUTO_CHILD_ROOT,
|
||||
|
|
Loading…
Add table
Reference in a new issue