mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
19 lines
503 B
C
19 lines
503 B
C
#ifndef POKEHEARTGOLD_CHOOSE_STARTER_APP_H
|
|
#define POKEHEARTGOLD_CHOOSE_STARTER_APP_H
|
|
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "pokemon_types_def.h"
|
|
|
|
typedef struct ChooseStarterArgs {
|
|
int cursorPos;
|
|
Options *options;
|
|
Pokemon starters[3];
|
|
} ChooseStarterArgs;
|
|
|
|
BOOL ChooseStarter_Init(OVY_MANAGER *man, int *state);
|
|
BOOL ChooseStarter_Main(OVY_MANAGER *man, int *state);
|
|
BOOL ChooseStarter_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_CHOOSE_STARTER_APP_H
|