mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-08 21:54:50 -04:00
18 lines
275 B
C
18 lines
275 B
C
#ifndef RES_HYS_H
|
|
#define RES_HYS_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum HYS_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDLM */
|
|
HYS_BDL_HYS=0x5,
|
|
|
|
/* BTP */
|
|
HYS_BTP_HYS=0x8,
|
|
|
|
/* DZB */
|
|
HYS_DZB_HYS=0xB,
|
|
};
|
|
|
|
#endif /* RES_HYS_H */
|