#ifndef BUTTON_HPP #define BUTTON_HPP #include "iostream" #include "Rectangle.hpp" #include "widget.hpp" class Button:public Widget{ public: std::string text; Button(); Button(std::string text, float _x, float _y, float _width, float _height); void Draw(float screenRatio); }; #endif