mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-10 19:16:45 -04:00
18 lines
340 B
C
18 lines
340 B
C
#ifndef RES_GBDOOR_H
|
|
#define RES_GBDOOR_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum GBDOOR_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
GBDOOR_BDL_V_GBD_L=0x4,
|
|
GBDOOR_BDL_V_GBD_R=0x5,
|
|
GBDOOR_BDL_V_GBDFU=0x6,
|
|
GBDOOR_BDL_V_GBDTO=0x7,
|
|
|
|
/* DZB */
|
|
GBDOOR_DZB_GBD=0xA,
|
|
};
|
|
|
|
#endif /* RES_GBDOOR_H */
|