mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-08 21:54:50 -04:00
20 lines
368 B
C
20 lines
368 B
C
#ifndef RES_HCBH_H
|
|
#define RES_HCBH_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum HCBH_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
HCBH_BDL_HCBH1A=0x4,
|
|
HCBH_BDL_HCBH1B=0x5,
|
|
HCBH_BDL_HCBH1C=0x6,
|
|
HCBH_BDL_HCBH1D=0x7,
|
|
HCBH_BDL_HCBH2=0x8,
|
|
|
|
/* DZB */
|
|
HCBH_DZB_HCBH1=0xB,
|
|
HCBH_DZB_HCBH2=0xC,
|
|
};
|
|
|
|
#endif /* RES_HCBH_H */
|