mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 12:46:23 -05:00
21 lines
545 B
C
21 lines
545 B
C
#ifndef POKEHEARTGOLD_OVY_111_H
|
|
#define POKEHEARTGOLD_OVY_111_H
|
|
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "pokemon_types_def.h"
|
|
|
|
typedef struct BugContestSwapMonArgs {
|
|
Pokemon *newlyCaughtMon;
|
|
Pokemon *currentMon;
|
|
BOOL noPokemonCaught;
|
|
Options *options;
|
|
Pokemon *unk10;
|
|
} BugContestSwapMonArgs;
|
|
|
|
BOOL BugContestSwapMon_Init(OVY_MANAGER *man, int *state);
|
|
BOOL BugContestSwapMon_Main(OVY_MANAGER *man, int *state);
|
|
BOOL BugContestSwapMon_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif //POKEHEARTGOLD_OVY_111_H
|