mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-13 05:46:18 -04:00
16 lines
249 B
C
16 lines
249 B
C
#ifndef RES_GBED_H
|
|
#define RES_GBED_H
|
|
|
|
#include "global.h"
|
|
|
|
enum GBED_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
GBED_BDL_K_GBED=0x4,
|
|
|
|
/* DZB */
|
|
GBED_DZB_K_GBED=0x7,
|
|
GBED_DZB_VTENG=0x8,
|
|
};
|
|
|
|
#endif /* RES_GBED_H */
|