Add Main menu screen

This commit is contained in:
2023-12-22 08:38:56 +01:00
parent a0291d0523
commit ea93a7aa33
5 changed files with 80 additions and 15 deletions

View File

@@ -6,10 +6,16 @@
extern BzUI *UI; // defined in main.c
f32 uiGetScale();
void uiPushDivParentPercentage(f32 xPercent, f32 yPercent);
void uiLargeLabel(const char *txt);
// Template stuff
void uiBaseLabel(const char *txt, Font font, f32 scl);
bool uiBaseTextButton(const char *txt, Font font, f32 scl);
bool uiLargeTextButton(const char *txt);
// actual UI
void uiMainMenuLabel(const char *txt);
bool uiMainMenuButton(const char *txt);
#endif //PIXELDEFENSE_UI_WIDGETS_H