mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-06 19:41:31 -04:00
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
#ifndef RES_BGN_H
|
|
#define RES_BGN_H
|
|
|
|
#include "global.h"
|
|
|
|
enum BGN_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
BGN_BCK_BGN_HEAD1=0x6,
|
|
BGN_BCK_BGN_HEAD2=0x7,
|
|
BGN_BCK_DAMAGE1=0x8,
|
|
BGN_BCK_DERU1=0x9,
|
|
BGN_BCK_JUMP1=0xA,
|
|
BGN_BCK_MODORU1=0xB,
|
|
BGN_BCK_RAKKA1=0xC,
|
|
BGN_BCK_RAKKA2=0xD,
|
|
BGN_BCK_SETTI1=0xE,
|
|
BGN_BCK_WAIT1=0xF,
|
|
BGN_BCK_WAIT2=0x10,
|
|
|
|
/* BDLM */
|
|
BGN_BDL_BGN_BODY1=0x13,
|
|
BGN_BDL_BGN_DEKU1=0x14,
|
|
BGN_BDL_BGN_HEAD1=0x15,
|
|
BGN_BDL_BGN_JYAKUTENA=0x16,
|
|
BGN_BDL_BGN_JYAKUTENA2=0x17,
|
|
BGN_BDL_BGN_JYAKUTENA3=0x18,
|
|
BGN_BDL_BGN_JYAKUTENB=0x19,
|
|
BGN_BDL_BGN_JYAKUTENB2=0x1A,
|
|
BGN_BDL_BGN_JYAKUTENB3=0x1B,
|
|
BGN_BDL_BGN_JYAKUTENC=0x1C,
|
|
BGN_BDL_BGN_JYAKUTENC2=0x1D,
|
|
BGN_BDL_BGN_JYAKUTENC3=0x1E,
|
|
BGN_BDL_BGN_KUMO1=0x1F,
|
|
BGN_BDL_BGN_MAIN1=0x20,
|
|
BGN_BDL_R00=0x21,
|
|
BGN_BDL_R0E_A=0x22,
|
|
|
|
/* BRK */
|
|
BGN_BRK_BGN_JYAKUTENB=0x25,
|
|
BGN_BRK_BGN_JYAKUTENB2=0x26,
|
|
BGN_BRK_BGN_JYAKUTENB3=0x27,
|
|
BGN_BRK_BGN_JYAKUTENC=0x28,
|
|
BGN_BRK_BGN_JYAKUTENC2=0x29,
|
|
BGN_BRK_BGN_JYAKUTENC3=0x2A,
|
|
|
|
/* TEX */
|
|
BGN_BTI_HIMO=0x2D,
|
|
BGN_BTI_NOT_CUT1=0x2E,
|
|
};
|
|
|
|
#endif /* RES_BGN_H */
|