You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
293 B

#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