mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-12 05:27:14 -04:00
21 lines
347 B
C
21 lines
347 B
C
#ifndef RES_SK2_H
|
|
#define RES_SK2_H
|
|
|
|
#include "global.h"
|
|
|
|
enum SK2_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
SK2_BCK_KSYLF_00=0x5,
|
|
SK2_BCK_KSYLF_01=0x6,
|
|
|
|
/* BDLM */
|
|
SK2_BDL_KSYLF_00=0x9,
|
|
SK2_BDL_KSYLF_01=0xA,
|
|
|
|
/* DZB */
|
|
SK2_DZB_KSYLF_00=0xD,
|
|
SK2_DZB_KSYLF_01=0xE,
|
|
};
|
|
|
|
#endif /* RES_SK2_H */
|