mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
23 lines
583 B
C
23 lines
583 B
C
#ifndef POKEHEARTGOLD_VOLTORB_FLIP_H
|
|
#define POKEHEARTGOLD_VOLTORB_FLIP_H
|
|
|
|
#include "menu_input_state.h"
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "player_data.h"
|
|
#include "save.h"
|
|
|
|
typedef struct VoltorbFlipArgs {
|
|
Options *options;
|
|
u16 *coins;
|
|
MenuInputStateMgr *menuInputStatePtr;
|
|
PlayerProfile *profile;
|
|
SaveData *saveData;
|
|
} VoltorbFlipArgs;
|
|
|
|
BOOL VoltorbFlip_Init(OVY_MANAGER *man, int *state);
|
|
BOOL VoltorbFlip_Exit(OVY_MANAGER *man, int *state);
|
|
BOOL VoltorbFlip_Main(OVY_MANAGER *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_VOLTORB_FLIP_H
|