mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-19 23:23:14 -04:00
23 lines
396 B
C
23 lines
396 B
C
#ifndef RES_GY_H
|
|
#define RES_GY_H
|
|
|
|
#include "global.h"
|
|
|
|
enum GY_RES_FILE_ID { // IDs and indexes are synced
|
|
/* BCK */
|
|
GY_BCK_ATTACK1=0x4,
|
|
GY_BCK_ATTACK2=0x5,
|
|
GY_BCK_BUTUKARU1=0x6,
|
|
GY_BCK_DAMAGE1=0x7,
|
|
GY_BCK_DEATH1=0x8,
|
|
GY_BCK_DEATH2=0x9,
|
|
GY_BCK_JUMP1=0xA,
|
|
GY_BCK_SWIM1=0xB,
|
|
GY_BCK_SWIM2=0xC,
|
|
|
|
/* BMD */
|
|
GY_BMD_GY=0xF,
|
|
};
|
|
|
|
#endif /* RES_GY_H */
|