mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-26 17:52:03 -04:00
16 lines
248 B
C
16 lines
248 B
C
#ifndef RES_DEKU_H
|
|
#define RES_DEKU_H
|
|
|
|
#include "global.h"
|
|
|
|
enum DEKU_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
DEKU_BCK_VLFDK=0x4,
|
|
DEKU_BCK_VLFDM=0x5,
|
|
|
|
/* BDLM */
|
|
DEKU_BDL_VLFDM=0x8,
|
|
};
|
|
|
|
#endif /* RES_DEKU_H */
|