mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 12:46:23 -05:00
18 lines
414 B
C
18 lines
414 B
C
#ifndef POKEHEARTGOLD_OVY_54_H
|
|
#define POKEHEARTGOLD_OVY_54_H
|
|
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
|
|
typedef struct OptionsMenuArgs {
|
|
u8 unk0[0x4];
|
|
Options *options;
|
|
u32 *unk8;
|
|
} OptionsMenuArgs;
|
|
|
|
BOOL OptionsMenu_Init(OVY_MANAGER *man, int *state);
|
|
BOOL OptionsMenu_Main(OVY_MANAGER *man, int *state);
|
|
BOOL OptionsMenu_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif //POKEHEARTGOLD_OVY_54_H
|