class EE::UI::UIIcon

#include <uiicon.hpp>

class UIIcon {
public:
    // construction

    virtual ~UIIcon();

    // methods

    static UIIcon* New(const std::string& name);
    const std::string& getName() const;
    virtual Drawable* getSize(const int& size) const;
    virtual void setSize(const int& size, Drawable* drawable);
};