public UICheckbox(string label, UIProperty <bool> @checked) { Label = label; Checked = @checked; }
public UIWindow(string name, UIProperty <bool> open, ImGuiWindowFlags flags, IEnumerable <IUIComponent> children) : base(children) { Name = name; Open = open; Flags = flags; }