mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-11 05:08:07 -04:00
18 lines
338 B
C
18 lines
338 B
C
#ifndef RES_SEARCH_H
|
|
#define RES_SEARCH_H
|
|
|
|
#include "global.h"
|
|
|
|
enum SEARCH_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
SEARCH_BDL_S_BEAM=0x4,
|
|
SEARCH_BDL_S_SEARCH=0x5,
|
|
|
|
/* DZB */
|
|
SEARCH_DZB_S_BASE=0x8,
|
|
SEARCH_DZB_S_SEARCH_LIGHTA=0x9,
|
|
SEARCH_DZB_S_SEARCH_LIGHTB=0xA,
|
|
};
|
|
|
|
#endif /* RES_SEARCH_H */
|