diff options
Diffstat (limited to 'ui.hpp')
-rw-r--r-- | ui.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -234,6 +234,13 @@ struct UI { void set_val(float v); }; + struct Int_Input : Input { + int val; + Int_Input(UI* ui, Element* parent); + void on_message(const Message& m) override; + void set_val(int v); + }; + struct Slider : Element { Float_Input* input; float minval, maxval; |