#ifndef WIDGET_HPP #define WIDGET_HPP #include "Rectangle.hpp" class Widget{ protected: Rectangle rectangle; public: bool hovering; Widget(); Widget(float _x, float _y, float _width, float _height); void handle(GLFWwindow* win); void Draw(float screenRatio); }; #endif