/// <summary>
 /// Takes user back to home screen to change difficulty
 /// </summary>
 private void ChangeDifficulty()
 {
     formDifficultySelection.UpdateSave();
     formDifficultySelection.Show();
     this.Close();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Shows whichever form opened this form, before closing this one.
 /// </summary>
 private void CloseStats()
 {
     formDifficultySelection.UpdateSave();
     formParent.Show();
     this.Close();
 }