Start moving options menus to another file

This commit is contained in:
UnknownShadow200 2024-07-08 21:38:45 +10:00
parent 55c4b51a39
commit 6ee857c87e
3 changed files with 1229 additions and 1180 deletions

1223
src/MenuOptions.c Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -10,6 +10,7 @@ struct MenuInputDesc;
struct FontDesc;
struct ButtonWidget;
int Menu_DoPointerMove(void* screen, int id, int x, int y);
int Menu_InputDown(void* screen, int key);
int Menu_PointerDown(void* screen, int id, int x, int y);
int Menu_PointerMove(void* screen, int id, int x, int y);
@ -66,4 +67,5 @@ void TouchOnscreenScreen_Show(void);
void MenuScreen_Render2(void* screen, float delta);
typedef void (*MenuInputDone)(const cc_string* value, cc_bool valid);
void MenuInputOverlay_Show(struct MenuInputDesc* desc, const cc_string* value, MenuInputDone onDone, cc_bool screenMode);
void MenuInputOverlay_Close(cc_bool valid);
#endif