mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-05 11:17:43 -04:00
19 lines
266 B
C
19 lines
266 B
C
#ifndef RES_PTC_H
|
|
#define RES_PTC_H
|
|
|
|
#include "global.h"
|
|
|
|
enum PTC_RES_FILE_ID {
|
|
/* BDL */
|
|
PTC_BDL_PTCO=0x0,
|
|
PTC_BDL_PTCU=0x1,
|
|
};
|
|
|
|
enum PTC_RES_FILE_INDEX {
|
|
/* BDL */
|
|
PTC_INDEX_BDL_PTCO=0x3,
|
|
PTC_INDEX_BDL_PTCU=0x4,
|
|
};
|
|
|
|
#endif /* RES_PTC_H */
|