mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-15 07:50:29 -05:00
29 lines
558 B
C
29 lines
558 B
C
#ifndef POKEPLATINUM_EGG_HATCH_H
|
|
#define POKEPLATINUM_EGG_HATCH_H
|
|
|
|
#include "struct_defs/pokemon.h"
|
|
|
|
#include "applications/naming_screen.h"
|
|
|
|
#include "field_task.h"
|
|
#include "game_options.h"
|
|
#include "trainer_info.h"
|
|
|
|
typedef struct {
|
|
Pokemon *mon;
|
|
Options *options;
|
|
TrainerInfo *trainerInfo;
|
|
u16 bgmID;
|
|
} EggHatchArgs;
|
|
|
|
typedef struct {
|
|
int state;
|
|
BOOL nicknameMon;
|
|
NamingScreenArgs *nameScreenArgs;
|
|
EggHatchArgs args;
|
|
} EggHatchApp;
|
|
|
|
void EggHatch_HatchEgg(FieldTask *task, void *args);
|
|
|
|
#endif // POKEPLATINUM_EGG_HATCH_H
|