mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-11 06:34:45 -04:00
17 lines
302 B
C
17 lines
302 B
C
#ifndef RES_ESEKH_H
|
|
#define RES_ESEKH_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum ESEKH_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
ESEKH_BDL_ESEKH=0x4,
|
|
ESEKH_BDL_ESEKH2=0x5,
|
|
|
|
/* DZB */
|
|
ESEKH_DZB_ESEKH=0x8,
|
|
ESEKH_DZB_ESEKH2=0x9,
|
|
};
|
|
|
|
#endif /* RES_ESEKH_H */
|