2024-05-25 18:31:09 +00:00
|
|
|
#include "th01/math/subpixel.hpp"
|
|
|
|
#include "th03/playchar.hpp"
|
|
|
|
|
2024-01-17 08:03:39 +00:00
|
|
|
struct speed_t {
|
2020-02-21 17:48:10 +00:00
|
|
|
SPPoint8 aligned;
|
|
|
|
SPPoint8 diagonal;
|
2024-01-17 08:03:39 +00:00
|
|
|
};
|
2020-02-21 17:48:10 +00:00
|
|
|
|
2024-01-17 08:03:39 +00:00
|
|
|
struct playchar_speed_t {
|
2020-02-21 17:48:10 +00:00
|
|
|
speed_t motion;
|
|
|
|
unsigned char gauge_charge;
|
2024-01-17 08:03:39 +00:00
|
|
|
};
|
2020-02-21 17:48:10 +00:00
|
|
|
|
2021-11-22 10:48:24 +00:00
|
|
|
extern playchar_speed_t PLAYCHAR_SPEEDS[PLAYCHAR_COUNT + 1];
|