mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 20:56:40 -05:00
22 lines
637 B
C
22 lines
637 B
C
#ifndef POKEHEARTGOLD_OVY_108_H
|
|
#define POKEHEARTGOLD_OVY_108_H
|
|
|
|
#include "overlay_manager.h"
|
|
#include "save.h"
|
|
|
|
typedef struct SafariAreaCustomizerArgs {
|
|
SaveData *saveData;
|
|
u32 *unk4;
|
|
u8 unk8[0x1c];
|
|
} SafariAreaCustomizerArgs;
|
|
|
|
BOOL SafariDecoration_Init(OVY_MANAGER *man, int *state);
|
|
BOOL SafariDecoration_Main(OVY_MANAGER *man, int *state);
|
|
BOOL SafariDecoration_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
BOOL SafariAreaCustomizer_Init(OVY_MANAGER *man, int *state);
|
|
BOOL SafariAreaCustomizer_Main(OVY_MANAGER *man, int *state);
|
|
BOOL SafariAreaCustomizer_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif //POKEHEARTGOLD_OVY_108_H
|