mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 23:20:49 -05:00
* Standarized OverlayManager names * Most "overlay" to "application" * Other renames * Last rename * undo ov97_0222D30C.c changes
21 lines
577 B
C
21 lines
577 B
C
#ifndef POKEPLATINUM_APPLICATIONS_OPTIONS_MENU_H
|
|
#define POKEPLATINUM_APPLICATIONS_OPTIONS_MENU_H
|
|
|
|
#include "overlay_manager.h"
|
|
|
|
typedef struct OptionsMenu {
|
|
u16 textSpeed : 4;
|
|
u16 soundMode : 2;
|
|
u16 battleScene : 1;
|
|
u16 battleStyle : 1;
|
|
u16 buttonMode : 2;
|
|
u16 messageBoxStyle : 5;
|
|
u16 : 1;
|
|
} OptionsMenu;
|
|
|
|
BOOL OptionsMenu_Init(ApplicationManager *appMan, int *state);
|
|
BOOL OptionsMenu_Exit(ApplicationManager *appMan, int *state);
|
|
BOOL OptionsMenu_Main(ApplicationManager *appMan, int *state);
|
|
|
|
#endif // POKEPLATINUM_APPLICATIONS_OPTIONS_MENU_H
|