diff --git a/UI/Base/CheckBox.ts b/UI/Base/CheckBox.ts new file mode 100644 index 0000000..6fd9214 --- /dev/null +++ b/UI/Base/CheckBox.ts @@ -0,0 +1,17 @@ +import {UIElement} from "../UIElement"; +import {UIEventSource} from "../UIEventSource"; + + +export class CheckBox extends UIElement{ + + constructor(data: UIEventSource) { + super(data); + + } + + + protected InnerRender(): string { + return ""; + } + +} \ No newline at end of file