mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-31 23:59:05 -04:00
21 lines
442 B
C
21 lines
442 B
C
#ifndef RES_DOOR12_H
|
|
#define RES_DOOR12_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum DOOR12_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
DOOR12_BDL_DOOR12_GL=0x4,
|
|
DOOR12_BDL_DOOR12_GR=0x5,
|
|
DOOR12_BDL_DOOR12B_L=0x6,
|
|
DOOR12_BDL_DOOR12B_R=0x7,
|
|
DOOR12_BDL_DOOR12M_L=0x8,
|
|
DOOR12_BDL_DOOR12M_R=0x9,
|
|
|
|
/* DZB */
|
|
DOOR12_DZB_DOOR12_B=0xC,
|
|
DOOR12_DZB_DOOR12_G=0xD,
|
|
};
|
|
|
|
#endif /* RES_DOOR12_H */
|