mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-14 23:20:45 -05:00
22 lines
548 B
C
22 lines
548 B
C
#ifndef POKEHEARTGOLD_VOLTORB_FLIP_H
|
|
#define POKEHEARTGOLD_VOLTORB_FLIP_H
|
|
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "player_data.h"
|
|
#include "save.h"
|
|
|
|
typedef struct VoltorbFlipAppArgs {
|
|
OPTIONS *options;
|
|
u16 *coins;
|
|
int unk8;
|
|
PLAYERPROFILE *profile;
|
|
SAVEDATA *savedata;
|
|
} VoltorbFlipAppArgs;
|
|
|
|
BOOL VoltorbFlipApp_OvyInit(OVY_MANAGER *man, int *state);
|
|
BOOL VoltorbFlipApp_OvyExit(OVY_MANAGER *man, int *state);
|
|
BOOL VoltorbFlipApp_OvyExec(OVY_MANAGER *man, int *state);
|
|
|
|
#endif //POKEHEARTGOLD_VOLTORB_FLIP_H
|