mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-24 05:07:18 -05:00
22 lines
525 B
C
22 lines
525 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 VoltorbFlipArgs {
|
|
Options *options;
|
|
u16 *coins;
|
|
u32 *unk8;
|
|
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
|