mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-01 17:57:24 -04:00
17 lines
285 B
C
17 lines
285 B
C
#ifndef RES_OPEN1_H
|
|
#define RES_OPEN1_H
|
|
|
|
#include "global.h"
|
|
|
|
enum OPEN1_RES_FILE_ID { // IDs and indexes are synced
|
|
/* SCRN */
|
|
OPEN1_BLO_OPENING=0x4,
|
|
|
|
/* TIMG */
|
|
OPEN1_BTI_BLACK=0x7,
|
|
OPEN1_BTI_DEMO_1=0x8,
|
|
OPEN1_BTI_DEMO_2=0x9,
|
|
};
|
|
|
|
#endif /* RES_OPEN1_H */
|