mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-11-30 08:30:54 +00:00
24 lines
556 B
C
24 lines
556 B
C
#ifndef POKEHEARTGOLD_OVY_109_H
|
|
#define POKEHEARTGOLD_OVY_109_H
|
|
|
|
#include "menu_input_state.h"
|
|
#include "overlay_manager.h"
|
|
#include "save.h"
|
|
|
|
typedef struct PhotoAlbumArgs {
|
|
u8 unk0;
|
|
u8 photoWasSelected;
|
|
u8 cursorPos;
|
|
u8 unk3[0x2];
|
|
u8 unk5;
|
|
u8 unk6[0x2];
|
|
MenuInputStateMgr *menuInputStatePtr;
|
|
SaveData *saveData;
|
|
} PhotoAlbumArgs;
|
|
|
|
BOOL PhotoAlbum_Init(OVY_MANAGER *man, int *state);
|
|
BOOL PhotoAlbum_Main(OVY_MANAGER *man, int *state);
|
|
BOOL PhotoAlbum_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_OVY_109_H
|