mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 20:56:40 -05:00
19 lines
502 B
C
19 lines
502 B
C
#ifndef POKEHEARTGOLD_CHOOSE_STARTER_APP_H
|
|
#define POKEHEARTGOLD_CHOOSE_STARTER_APP_H
|
|
|
|
#include "pokemon_types_def.h"
|
|
#include "options.h"
|
|
#include "overlay_manager.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
|