Asteroids.TCheckBoxOption.CheckBoxClick C# (CSharp) Method

CheckBoxClick() public method

public CheckBoxClick ( ) : void
return void
        public void CheckBoxClick()
        {
            if (stateCheckBoxLeft == true)
            {
                stateCheckBoxLeft = false;
                //stateCheckBoxRight = true;
                txCheckBoxLeft = txUnCheckedBox;
                txCheckBoxRight = txCheckedBox;
                AntiAliasingCheck();
            }
            else
            {
                stateCheckBoxLeft = true;
                //stateCheckBoxRight = false;
                txCheckBoxLeft = txCheckedBox;
                txCheckBoxRight = txUnCheckedBox;
                AntiAliasingCheck();
            }
        }