2019-12-16 21:19:58 +00:00
|
|
|
typedef enum {
|
|
|
|
PLAYCHAR_REIMU = 0,
|
|
|
|
PLAYCHAR_MARISA = 1,
|
|
|
|
PLAYCHAR_MIMA = 2,
|
|
|
|
PLAYCHAR_YUUKA = 3,
|
2021-11-15 12:50:52 +00:00
|
|
|
PLAYCHAR_COUNT = 4,
|
|
|
|
|
2021-12-18 15:48:20 +00:00
|
|
|
_playchar_t_FORCE_UINT8 = 0xFF
|
|
|
|
} playchar_t;
|
2020-04-29 20:09:31 +00:00
|
|
|
|
2021-12-18 15:48:20 +00:00
|
|
|
extern playchar_t playchar;
|
2022-04-18 16:40:24 +00:00
|
|
|
|
|
|
|
// Returns the parameter for the current player character.
|
|
|
|
int pascal select_for_playchar(
|
|
|
|
int for_reimu, int for_marisa,
|
|
|
|
int for_mima, int for_yuuka
|
|
|
|
);
|