mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-08 10:33:07 -04:00
18 lines
295 B
C
18 lines
295 B
C
#ifndef RES_VLUPY_H
|
|
#define RES_VLUPY_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum VLUPY_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDLM */
|
|
VLUPY_BDL_VLUPY=0x5,
|
|
|
|
/* BRK */
|
|
VLUPY_BRK_VLUPY=0x8,
|
|
|
|
/* BTK */
|
|
VLUPY_BTK_VLUPY=0xB,
|
|
};
|
|
|
|
#endif /* RES_VLUPY_H */
|