mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-11 06:34:45 -04:00
19 lines
334 B
C
19 lines
334 B
C
#ifndef RES_GICEL_H
|
|
#define RES_GICEL_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum GICEL_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDLI */
|
|
GICEL_BDL_GICEL00=0x5,
|
|
|
|
/* BRK */
|
|
GICEL_BRK_GICEL00=0x8,
|
|
|
|
/* BTK */
|
|
GICEL_BTK_GICEL00_01=0xB,
|
|
GICEL_BTK_GICEL00_02=0xC,
|
|
};
|
|
|
|
#endif /* RES_GICEL_H */
|