mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-29 09:40:56 -04:00
1bd947b6dd
* 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
38 lines
1008 B
C
38 lines
1008 B
C
#ifndef RES_LV6WARP_H
|
|
#define RES_LV6WARP_H
|
|
|
|
enum dRes_INDEX_LV6WARP {
|
|
/* BMDE */
|
|
dRes_INDEX_LV6WARP_BMD_LV6_WARP_BASE_e=0x5,
|
|
dRes_INDEX_LV6WARP_BMD_LV6_WARP_BELL_e=0x6,
|
|
/* BRK */
|
|
dRes_INDEX_LV6WARP_BRK_LV6_WARP_BASE_e=0x9,
|
|
dRes_INDEX_LV6WARP_BRK_LV6_WARP_BELL_e=0xA,
|
|
/* DZB */
|
|
dRes_INDEX_LV6WARP_DZB_LV6_WARP_BASE_e=0xD,
|
|
dRes_INDEX_LV6WARP_DZB_LV6_WARP_BELL_e=0xE,
|
|
dRes_INDEX_LV6WARP_DZB_LV6_WARP_KABE_e=0xF,
|
|
};
|
|
|
|
enum dRes_ID_LV6WARP {
|
|
/* BMDE */
|
|
dRes_ID_LV6WARP_BMD_LV6_WARP_BASE_e=0x5,
|
|
dRes_ID_LV6WARP_BMD_LV6_WARP_BELL_e=0x6,
|
|
/* BRK */
|
|
dRes_ID_LV6WARP_BRK_LV6_WARP_BASE_e=0x9,
|
|
dRes_ID_LV6WARP_BRK_LV6_WARP_BELL_e=0xA,
|
|
/* DZB */
|
|
dRes_ID_LV6WARP_DZB_LV6_WARP_BASE_e=0xD,
|
|
dRes_ID_LV6WARP_DZB_LV6_WARP_BELL_e=0xE,
|
|
dRes_ID_LV6WARP_DZB_LV6_WARP_KABE_e=0xF,
|
|
};
|
|
|
|
enum LV6_WARP_BASE_JNT {
|
|
LV6_WARP_BASE_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
enum LV6_WARP_BELL_JNT {
|
|
LV6_WARP_BELL_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
#endif /* !RES_LV6WARP_H */ |