tibia-client/src/framework/ui/uicheckbox.h

16 lines
293 B
C++

#ifndef UICHECKBOX_H
#define UICHECKBOX_H
#include <global.h>
#include <ui/uielement.h>
class UICheckBox : public UIElement
{
public:
UICheckBox(UI::ElementType type = UI::Element);
virtual const char *getScriptObjectType() const { return "UICheckBox"; }
};
#endif // UICHECKBOX_H