mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-13 05:49:21 -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
1.0 KiB
C
40 lines
1.0 KiB
C
#ifndef RES_CRVFENCE_H
|
|
#define RES_CRVFENCE_H
|
|
|
|
enum dRes_INDEX_CRVFENCE {
|
|
/* BMDG */
|
|
dRes_INDEX_CRVFENCE_BMD_CARAVANPIECE_e=0x5,
|
|
/* BMDR */
|
|
dRes_INDEX_CRVFENCE_BMD_CARAVANFENCE_e=0x8,
|
|
dRes_INDEX_CRVFENCE_BMD_U_CARAVANGATE_PIECEB_e=0x9,
|
|
dRes_INDEX_CRVFENCE__U_CRVFENCE_BBREAKA_e=0xA,
|
|
dRes_INDEX_CRVFENCE__U_CRVFENCE_BBREAKB_e=0xB,
|
|
/* DZB */
|
|
dRes_INDEX_CRVFENCE_DZB_CARAVANFENCE_e=0xE,
|
|
};
|
|
|
|
enum dRes_ID_CRVFENCE {
|
|
/* BMDG */
|
|
dRes_ID_CRVFENCE_BMD_CARAVANPIECE_e=0x5,
|
|
/* BMDR */
|
|
dRes_ID_CRVFENCE_BMD_CARAVANFENCE_e=0x8,
|
|
dRes_ID_CRVFENCE_BMD_U_CARAVANGATE_PIECEB_e=0x9,
|
|
dRes_ID_CRVFENCE__U_CRVFENCE_BBREAKA_e=0xA,
|
|
dRes_ID_CRVFENCE__U_CRVFENCE_BBREAKB_e=0xB,
|
|
/* DZB */
|
|
dRes_ID_CRVFENCE_DZB_CARAVANFENCE_e=0xE,
|
|
};
|
|
|
|
enum CARAVANPIECE_JNT {
|
|
CARAVANPIECE_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
enum CARAVANFENCE_JNT {
|
|
CARAVANFENCE_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
enum U_CARAVANGATE_PIECEB_JNT {
|
|
U_CARAVANGATE_PIECEB_JNT_WORLD_ROOT_e=0x0,
|
|
};
|
|
|
|
#endif /* !RES_CRVFENCE_H */ |