BigRedButtonOfDeath.Forms.Form1.GameStarted C# (CSharp) Method

GameStarted() public method

public GameStarted ( ) : void
return void
        public void GameStarted()
        {
            if (this.InvokeRequired)
            {
                this.Invoke(new Action(GameStarted));
            }
            else
            {
                SetVisible(false, false, true, false, false);
                this.AcceptButton = btnSelfDestruct;
                btnSelfDestruct.Text = "Push for Self-Destruct";
            }
        }