pokeheartgold/include/voltorb_flip/voltorb_flip.h
2024-10-20 09:40:16 -04:00

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