diff options
Diffstat (limited to 'include/ui_menu.hpp')
-rw-r--r-- | include/ui_menu.hpp | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/include/ui_menu.hpp b/include/ui_menu.hpp index 8ca9368..b45a76d 100644 --- a/include/ui_menu.hpp +++ b/include/ui_menu.hpp @@ -13,28 +13,24 @@ class menuItem { public: int member; Menu *child; + + vec2 loc; + dim2 dim; + Color color; + std::string text; //union { struct { - vec2 loc; - dim2 dim; - Color color; - - std::string text; menuFunc func; } button; - struct { - vec2 loc; - dim2 dim; - Color color; + struct { float minValue; float maxValue; float sliderLoc; - - std::string text; float *var; } slider; //}; + menuItem(){} ~menuItem(){ //button.text = NULL; |