mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-08 21:54:50 -04:00
16 lines
269 B
C
16 lines
269 B
C
#ifndef RES_DEKU_H
|
|
#define RES_DEKU_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
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 */
|