/// <summary> /// Activated on win condition, triggers the win-screen. /// </summary> internal void Win() { EndState = true; endForm = new EndForm(this, "Congrats! Care for another round?"); endForm.Show(); endForm.Focus(); }
/// <summary> /// Activated on lose condition, triggers the killscreen. /// </summary> internal void Lose() { EndState = true; endForm = new EndForm(this, "Sorry you lost.. Want to play again?"); endForm.Show(); endForm.Focus(); }