mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-02 01:59:56 -04:00
17 lines
264 B
C
17 lines
264 B
C
#ifndef RES_KEY_H
|
|
#define RES_KEY_H
|
|
|
|
#include "global.h"
|
|
|
|
enum KEY_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
KEY_BCK_VLOCB=0x4,
|
|
KEY_BCK_VLOCN=0x5,
|
|
|
|
/* BDLM */
|
|
KEY_BDL_VLOCB=0x8,
|
|
KEY_BDL_VLOCN=0x9,
|
|
};
|
|
|
|
#endif /* RES_KEY_H */
|