Ballz.Menu.CheckBox.CheckBox C# (CSharp) Method

CheckBox() public method

public CheckBox ( string name, Settings value = null, bool selectable = true ) : System
name string
value Settings
selectable bool
return System
        public CheckBox(string name, Settings.Setting<bool> value = null, bool selectable = true )
            : base(name, selectable)
        {
            this.value = value;
            if (this.value != null)
                OnSelect += () => this.value.Value = !this.value.Value;
        }
CheckBox