mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-19 07:17:19 -04:00
18 lines
254 B
C
18 lines
254 B
C
#ifndef RES_HYS_H
|
|
#define RES_HYS_H
|
|
|
|
#include "global.h"
|
|
|
|
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 */
|