From 4abe74fbf1e995cb07b6df79c2060861de380753 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 20 Jul 2020 13:30:58 +0200 Subject: [PATCH] Add minimal checkbox --- UI/Base/CheckBox.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 UI/Base/CheckBox.ts 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