diff options
Diffstat (limited to 'ui.hpp')
-rw-r--r-- | ui.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -226,6 +226,9 @@ struct UI { void on_render() override; void set_text(const char* s); + void set_int(int v); + void set_hex(uint64_t v); + void set_float(float v); }; struct Button : Label { |