mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-09 20:40:49 -04:00
17 lines
269 B
C
17 lines
269 B
C
#ifndef RES_AYGR_H
|
|
#define RES_AYGR_H
|
|
|
|
#include "global.h"
|
|
|
|
enum AYGR_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
AYGR_BDL_AYGR=0x4,
|
|
AYGR_BDL_AYGRH=0x5,
|
|
|
|
/* DZB */
|
|
AYGR_DZB_AYGR=0x8,
|
|
AYGR_DZB_AYGRH=0x9,
|
|
};
|
|
|
|
#endif /* RES_AYGR_H */
|