mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-06 11:37:25 -04:00
18 lines
274 B
C
18 lines
274 B
C
#ifndef RES_VMAGS_H
|
|
#define RES_VMAGS_H
|
|
|
|
#include "global.h"
|
|
|
|
enum VMAGS_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BDLM */
|
|
VMAGS_BDL_VMAGS=0x5,
|
|
|
|
/* BRK */
|
|
VMAGS_BRK_VMAGS=0x8,
|
|
|
|
/* BTK */
|
|
VMAGS_BTK_VMAGS=0xB,
|
|
};
|
|
|
|
#endif /* RES_VMAGS_H */
|