mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-30 16:35:26 -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
40 lines
982 B
C
40 lines
982 B
C
#ifndef RES_L9PICTURE_H
|
|
#define RES_L9PICTURE_H
|
|
|
|
enum dRes_INDEX_L9PICTURE {
|
|
/* BMDR */
|
|
dRes_INDEX_L9PICTURE_BMD_L_ROPEST_e=0x5,
|
|
dRes_INDEX_L9PICTURE_BMD_LV9_PICTURE_A_e=0x6,
|
|
dRes_INDEX_L9PICTURE_BMD_LV9_PICTURE_B_e=0x7,
|
|
/* DZB */
|
|
dRes_INDEX_L9PICTURE_DZB_LV9_PICTURE_e=0xA,
|
|
dRes_INDEX_L9PICTURE_DZB_LV9_ROPEST_e=0xB,
|
|
/* TEX */
|
|
dRes_INDEX_L9PICTURE_BTI_P_LV9_ROPE_e=0xE,
|
|
};
|
|
|
|
enum dRes_ID_L9PICTURE {
|
|
/* BMDR */
|
|
dRes_ID_L9PICTURE_BMD_L_ROPEST_e=0x5,
|
|
dRes_ID_L9PICTURE_BMD_LV9_PICTURE_A_e=0x6,
|
|
dRes_ID_L9PICTURE_BMD_LV9_PICTURE_B_e=0x7,
|
|
/* DZB */
|
|
dRes_ID_L9PICTURE_DZB_LV9_PICTURE_e=0xA,
|
|
dRes_ID_L9PICTURE_DZB_LV9_ROPEST_e=0xB,
|
|
/* TEX */
|
|
dRes_ID_L9PICTURE_BTI_P_LV9_ROPE_e=0xE,
|
|
};
|
|
|
|
enum L_ROPEST_JNT {
|
|
L_ROPEST_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
enum LV9_PICTURE_A_JNT {
|
|
LV9_PICTURE_A_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
enum LV9_PICTURE_B_JNT {
|
|
LV9_PICTURE_B_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
#endif /* !RES_L9PICTURE_H */ |