mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-09 22:11:35 -04:00
18 lines
340 B
C
18 lines
340 B
C
#ifndef RES_OKMONO_H
|
|
#define RES_OKMONO_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum OKMONO_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
OKMONO_BDL_OSTOOL=0x4,
|
|
OKMONO_BDL_OTABLE=0x5,
|
|
OKMONO_BDL_OTABLEL=0x6,
|
|
|
|
/* DZB */
|
|
OKMONO_DZB_OTBLE=0x9,
|
|
OKMONO_DZB_OTBLE_L=0xA,
|
|
};
|
|
|
|
#endif /* RES_OKMONO_H */
|