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
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
#ifndef RES_SEID_H
|
|
#define RES_SEID_H
|
|
|
|
enum dRes_INDEX_SEID {
|
|
/* BMDE */
|
|
dRes_INDEX_SEID_BMD_SEID_NOMAL_e=0x5,
|
|
/* BRK */
|
|
dRes_INDEX_SEID_BRK_SEID_NOMAL_e=0x8,
|
|
/* BTK */
|
|
dRes_INDEX_SEID_BTK_SEID_NOMAL_e=0xB,
|
|
};
|
|
|
|
enum dRes_ID_SEID {
|
|
/* BMDE */
|
|
dRes_ID_SEID_BMD_SEID_NOMAL_e=0x5,
|
|
/* BRK */
|
|
dRes_ID_SEID_BRK_SEID_NOMAL_e=0x8,
|
|
/* BTK */
|
|
dRes_ID_SEID_BTK_SEID_NOMAL_e=0xB,
|
|
};
|
|
|
|
enum SEID_NOMAL_JNT {
|
|
SEID_NOMAL_JNT_WORLD_ROOT_e=0x0,
|
|
SEID_NOMAL_JNT_BACKBORN1_e=0x1,
|
|
SEID_NOMAL_JNT_BACKBORN2_e=0x2,
|
|
SEID_NOMAL_JNT_BACKBORN3_e=0x3,
|
|
SEID_NOMAL_JNT_NECK1_e=0x4,
|
|
SEID_NOMAL_JNT_NECK2_e=0x5,
|
|
SEID_NOMAL_JNT_NECK3_e=0x6,
|
|
SEID_NOMAL_JNT_NECK4_e=0x7,
|
|
SEID_NOMAL_JNT_HEAD_e=0x8,
|
|
SEID_NOMAL_JNT_CHIN_e=0x9,
|
|
SEID_NOMAL_JNT_TAIL1_e=0xA,
|
|
SEID_NOMAL_JNT_TAIL2_e=0xB,
|
|
SEID_NOMAL_JNT_TAIL3_e=0xC,
|
|
SEID_NOMAL_JNT_TAIL4_e=0xD,
|
|
SEID_NOMAL_JNT_TAIL5_e=0xE,
|
|
SEID_NOMAL_JNT_TAIL6_e=0xF,
|
|
SEID_NOMAL_JNT_TAIL7_e=0x10,
|
|
SEID_NOMAL_JNT_TAIL8_e=0x11,
|
|
SEID_NOMAL_JNT_TAIL9_e=0x12,
|
|
SEID_NOMAL_JNT_CIRCLEA_e=0x13,
|
|
SEID_NOMAL_JNT_CIRCLEB_e=0x14,
|
|
};
|
|
|
|
#endif /* !RES_SEID_H */ |