mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-10 06:16:52 -04:00
16 lines
266 B
C
16 lines
266 B
C
#ifndef RES_SYAN_H
|
|
#define RES_SYAN_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum SYAN_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
SYAN_BCK_SYAN=0x4,
|
|
SYAN_BCK_SYAN2=0x5,
|
|
|
|
/* BDL */
|
|
SYAN_BDL_SYAN=0x8,
|
|
};
|
|
|
|
#endif /* RES_SYAN_H */
|