2019-12-16 21:19:58 +00:00
|
|
|
typedef enum {
|
|
|
|
PLAYCHAR_REIMU = 0,
|
|
|
|
PLAYCHAR_MARISA = 1,
|
|
|
|
PLAYCHAR_COUNT = 2
|
|
|
|
} playchars_t;
|
2019-12-29 11:14:54 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
SHOTTYPE_A = 0,
|
|
|
|
SHOTTYPE_B = 1,
|
|
|
|
SHOTTYPE_COUNT,
|
|
|
|
} shottype_t;
|
2020-04-29 20:09:31 +00:00
|
|
|
|
2020-10-27 17:04:29 +00:00
|
|
|
// Used way too often...
|
|
|
|
inline playchars_t playchar_other(playchars_t playchar) {
|
|
|
|
return static_cast<playchars_t>(PLAYCHAR_MARISA - playchar);
|
|
|
|
}
|
|
|
|
|
2020-04-29 20:09:31 +00:00
|
|
|
extern playchars_t playchar;
|