mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-08 21:54:50 -04:00
18 lines
354 B
C
18 lines
354 B
C
#ifndef RES_BWDS_H
|
|
#define RES_BWDS_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum BWDS_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
BWDS_BCK_KOBOSS_CLOSE=0x4,
|
|
BWDS_BCK_KOBOSS_PAKUPAKU=0x5,
|
|
|
|
/* BDLM */
|
|
BWDS_BDL_KOBOSS_BODY=0x8,
|
|
BWDS_BDL_KOBOSS_HEAD=0x9,
|
|
BWDS_BDL_KOBOSS_SHIPPO=0xA,
|
|
};
|
|
|
|
#endif /* RES_BWDS_H */
|