mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-04 18:58:35 -04:00
21 lines
303 B
C
21 lines
303 B
C
#ifndef RES_MOZO_H
|
|
#define RES_MOZO_H
|
|
|
|
#include "global.h"
|
|
|
|
enum MOZO_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCKS */
|
|
MOZO_BCK_MOZ=0x6,
|
|
|
|
/* BDLM */
|
|
MOZO_BDL_MOZ=0x9,
|
|
|
|
/* BRK */
|
|
MOZO_BRK_MOZ=0xC,
|
|
|
|
/* BTK */
|
|
MOZO_BTK_MOZ=0xF,
|
|
};
|
|
|
|
#endif /* RES_MOZO_H */
|