mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
da03a43cef
* add shield assets * add shieldD assets * add GCN US assets * add GCN JP asset enums * add GCN PAL asset enums * add WII asset enums * add WII Rev 2 asset enums * add all other files * change asset include directory to force "res/" prefix * remove wrong duplicate marks * Allow cpp files to reference arc enums * rename all resource files to not begin with "res_" * update res_arc tool to use argparse * remove Stage enums
40 lines
1002 B
C
40 lines
1002 B
C
#ifndef RES_M_RGATE00_H
|
|
#define RES_M_RGATE00_H
|
|
|
|
enum dRes_INDEX_M_RGATE00 {
|
|
/* BMDR */
|
|
dRes_INDEX_M_RGATE00_BMD_M_RIDERGATE_e=0x5,
|
|
dRes_INDEX_M_RGATE00_BMD_M_RIDERGATE_HOOK_e=0x6,
|
|
dRes_INDEX_M_RGATE00_BMD_M_RIDERGATE_KEY_e=0x7,
|
|
/* DZB */
|
|
dRes_INDEX_M_RGATE00_DZB_M_RIDERGATE_e=0xA,
|
|
/* EVT */
|
|
dRes_INDEX_M_RGATE00_DAT_EVENT_LIST_e=0xD,
|
|
};
|
|
|
|
enum dRes_ID_M_RGATE00 {
|
|
/* BMDR */
|
|
dRes_ID_M_RGATE00_BMD_M_RIDERGATE_e=0x5,
|
|
dRes_ID_M_RGATE00_BMD_M_RIDERGATE_HOOK_e=0x6,
|
|
dRes_ID_M_RGATE00_BMD_M_RIDERGATE_KEY_e=0x7,
|
|
/* DZB */
|
|
dRes_ID_M_RGATE00_DZB_M_RIDERGATE_e=0xA,
|
|
/* EVT */
|
|
dRes_ID_M_RGATE00_DAT_EVENT_LIST_e=0xD,
|
|
};
|
|
|
|
enum M_RIDERGATE_JNT {
|
|
M_RIDERGATE_JNT_M_RIDERGATE_e=0x0,
|
|
M_RIDERGATE_JNT_RIDERGATE_L_e=0x1,
|
|
M_RIDERGATE_JNT_RIDERGATE_R_e=0x2,
|
|
};
|
|
|
|
enum M_RIDERGATE_HOOK_JNT {
|
|
M_RIDERGATE_HOOK_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
enum M_RIDERGATE_KEY_JNT {
|
|
M_RIDERGATE_KEY_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
#endif /* !RES_M_RGATE00_H */ |