mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-06 03:28:35 -04:00
17 lines
282 B
C
17 lines
282 B
C
#ifndef RES_MSPOT_H
|
|
#define RES_MSPOT_H
|
|
|
|
#include "global.h"
|
|
|
|
enum MSPOT_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDLM */
|
|
MSPOT_BDL_MSPOCN=0x4,
|
|
MSPOT_BDL_MSPOT=0x5,
|
|
|
|
/* BTK */
|
|
MSPOT_BTK_MSPOCN=0x8,
|
|
MSPOT_BTK_MSPOT=0x9,
|
|
};
|
|
|
|
#endif /* RES_MSPOT_H */
|