mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-08 21:54:50 -04:00
18 lines
295 B
C
18 lines
295 B
C
#ifndef RES_HMLIF_H
|
|
#define RES_HMLIF_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum HMLIF_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDLM */
|
|
HMLIF_BDL_HMLIF=0x5,
|
|
|
|
/* BRK */
|
|
HMLIF_BRK_HMLIF=0x8,
|
|
|
|
/* DZB */
|
|
HMLIF_DZB_HMLIF=0xB,
|
|
};
|
|
|
|
#endif /* RES_HMLIF_H */
|