mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-26 15:44:53 -04:00
17 lines
279 B
C
17 lines
279 B
C
#ifndef RES_TABLE_H
|
|
#define RES_TABLE_H
|
|
|
|
#include "global.h"
|
|
|
|
enum TABLE_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDL */
|
|
TABLE_BDL_YTBLE=0x4,
|
|
TABLE_BDL_QCFIS=0x5,
|
|
|
|
/* DZB */
|
|
TABLE_DZB_QCFIS=0x8,
|
|
TABLE_DZB_YTBLE=0x9,
|
|
};
|
|
|
|
#endif /* RES_TABLE_H */
|