mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-11 06:34:45 -04:00
18 lines
295 B
C
18 lines
295 B
C
#ifndef RES_VTENG_H
|
|
#define RES_VTENG_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum VTENG_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
VTENG_BCK_VTENG=0x5,
|
|
|
|
/* BDLM */
|
|
VTENG_BDL_VTENG=0x8,
|
|
|
|
/* DZB */
|
|
VTENG_DZB_VTENG=0xB,
|
|
};
|
|
|
|
#endif /* RES_VTENG_H */
|