mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-08 21:54:50 -04:00
16 lines
308 B
C
16 lines
308 B
C
#ifndef RES_ASTOP_H
|
|
#define RES_ASTOP_H
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
enum ASTOP_RES_FILE_ID { // IDs and indexes are synced
|
|
/* DZB */
|
|
ASTOP_DZB_A00=0x3,
|
|
ASTOP_DZB_ASLOW=0x4,
|
|
ASTOP_DZB_ASLOW00=0x5,
|
|
ASTOP_DZB_ASTOP=0x6,
|
|
ASTOP_DZB_ASTOP00=0x7,
|
|
};
|
|
|
|
#endif /* RES_ASTOP_H */
|