mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-19 15:20:36 -04:00
17 lines
282 B
C
17 lines
282 B
C
#ifndef RES_SITEM_H
|
|
#define RES_SITEM_H
|
|
|
|
#include "global.h"
|
|
|
|
enum SITEM_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
SITEM_BDL_KMI_00=0x4,
|
|
SITEM_BDL_KMI_01=0x5,
|
|
SITEM_BDL_KMI_02=0x6,
|
|
|
|
/* TEX */
|
|
SITEM_BTI_SITEM=0x9,
|
|
};
|
|
|
|
#endif /* RES_SITEM_H */
|