#ifndef _BUTTON_IMGUI_H #define _BUTTON_IMGUI_H #include #include #include "ui-widget.hpp" using namespace glm; using namespace std; class ButtonImGui : public UIWidget { public: ButtonImGui(string label); virtual ~ButtonImGui(); bool draw(int offset); protected: void calculateSize(); private: string label; }; #endif // _BUTTON_IMGUI_H