Add continue button

This commit is contained in:
2024-01-28 20:18:31 +01:00
parent dfc20b6a96
commit 73082f9d1d
3 changed files with 19 additions and 16 deletions

View File

@@ -12,13 +12,13 @@ BzUINode *uiPushDivParentPercentage(f32 xPercent, f32 yPercent);
// Template stuff
void uiBaseLabel(const char *txt, Font font, f32 scl, Color color);
bool uiBaseTextButton(const char *txt, Font font, f32 scl);
bool uiBaseTextButton(const char *txt, Font font, f32 scl, bool enabled);
void uiBaseCheckbox(const char *txt, Font font, f32 scl, bool *check);
void uiBaseSlider(const char *txt, Font font, f32 scl, f32 *value, f32 min, f32 max);
// actual UI
void uiMainMenuLabel(const char *txt);
bool uiMainMenuButton(const char *txt);
bool uiMainMenuButton(const char *txt, bool enabled);
void uiSettingsLabel(const char *txt);
bool uiSettingsButton(const char *txt);