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