mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-11 06:34:45 -04:00
21 lines
440 B
C
21 lines
440 B
C
#ifndef RES_DOOR13_H
|
|
#define RES_DOOR13_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum DOOR13_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
DOOR13_BDL_DOOR13_L=0x4,
|
|
DOOR13_BDL_DOOR13_R=0x5,
|
|
DOOR13_BDL_DOOR13B_L=0x6,
|
|
DOOR13_BDL_DOOR13B_R=0x7,
|
|
DOOR13_BDL_DOOR13M_L=0x8,
|
|
DOOR13_BDL_DOOR13M_R=0x9,
|
|
|
|
/* DZB */
|
|
DOOR13_DZB_DOOR13_B=0xC,
|
|
DOOR13_DZB_DOOR13_G=0xD,
|
|
};
|
|
|
|
#endif /* RES_DOOR13_H */
|