private void PlayButton_Click(object sender, EventArgs e) { this.Visible = false; GameMainWindow l = new GameMainWindow(this); l.Show(); }
private void PlayAgainButton_Click(object sender, EventArgs e) { SaveRecord(); this.Close(); GameMainWindow l = new GameMainWindow(_menu); l.Show(); }