mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-08 04:07:13 -04:00
17 lines
293 B
C
17 lines
293 B
C
#ifndef RES_EBROCK_H
|
|
#define RES_EBROCK_H
|
|
|
|
#include "global.h"
|
|
|
|
enum EBROCK_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
EBROCK_BDL_EBROCK=0x4,
|
|
EBROCK_BDL_EBROCK2=0x5,
|
|
|
|
/* DZB */
|
|
EBROCK_DZB_EBROCK=0x8,
|
|
EBROCK_DZB_EBROCK2=0x9,
|
|
};
|
|
|
|
#endif /* RES_EBROCK_H */
|