#ifndef UI2D_GUI_FONTSBUTTON #define UI2D_GUI_FONTSBUTTON #include #include #include #include "../../uni.h" namespace gcn { class FontsButton: public gcn::Button { ImageFont *font1, *font2; bool click; public: FontsButton(std::string text, ImageFont* in_font1, ImageFont *in_font2); void draw(Graphics* graphics); void drawBorder(Graphics* graphics); bool isClick(); }; } #endif