2019-12-01 15:32:22 +00:00
|
|
|
typedef enum {
|
2020-01-29 07:57:06 +00:00
|
|
|
PLAYCHAR_REIMU = 0,
|
|
|
|
PLAYCHAR_MIMA = 1,
|
|
|
|
PLAYCHAR_MARISA = 2,
|
|
|
|
PLAYCHAR_ELLEN = 3,
|
|
|
|
PLAYCHAR_KOTOHIME = 4,
|
|
|
|
PLAYCHAR_KANA = 5,
|
|
|
|
PLAYCHAR_RIKAKO = 6,
|
|
|
|
PLAYCHAR_CHIYURI = 7,
|
|
|
|
PLAYCHAR_YUMEMI = 8,
|
|
|
|
PLAYCHAR_COUNT = 9,
|
2019-12-01 15:32:22 +00:00
|
|
|
} playchars_t;
|
2019-12-01 17:13:28 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
SPPoint8 aligned;
|
|
|
|
SPPoint8 diagonal;
|
|
|
|
} speed_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
speed_t motion;
|
|
|
|
unsigned char gauge_charge;
|
|
|
|
} playchar_speeds_t;
|
|
|
|
|
|
|
|
extern playchar_speeds_t PLAYCHAR_SPEEDS[PLAYCHAR_COUNT + 1];
|