- [FIX] Ja eix correctament del editor

- [NEW] Més gràfics
- [NEW] Ara es pot modificar el valor dels camps escribint el numero
This commit is contained in:
2024-07-10 19:44:23 +02:00
parent 2a629529fd
commit 7365d72360
8 changed files with 229 additions and 35 deletions

View File

@@ -4,12 +4,11 @@
namespace ui
{
void start();
void label(const char *label, const int x, const int y, const int w, const int h, const int color=WHITE+LIGHT);
const bool button(const char *label, const int x, const int y, const int w, const int h, const bool pressed=false);
const int check(const char *label, const int x, const int y, const int w, const int h, const bool checked);
const int combo(const char *label, const int x, const int y, const int w, const int h);
const char *spin(const char *lbl, const int x, const int y, const int w, const int h);
const int textbox(const char *label, const int x, const int y, const int w, const int h);
void selected(const bool value);
}