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

16 lines
293 B
C
Raw Normal View History

2011-04-12 07:51:09 +02:00
#ifndef UICHECKBOX_H
#define UICHECKBOX_H
2011-07-13 23:12:36 +02:00
#include <global.h>
2011-04-12 07:51:09 +02:00
#include <ui/uielement.h>
class UICheckBox : public UIElement
{
public:
UICheckBox(UI::ElementType type = UI::Element);
2011-04-22 00:44:30 +02:00
2011-07-17 02:13:53 +02:00
virtual const char *getScriptObjectType() const { return "UICheckBox"; }
2011-04-12 07:51:09 +02:00
};
#endif // UICHECKBOX_H