private void btJocNou_Click(object sender, EventArgs e) { Joc joc = new Joc(0); this.Hide(); joc.ShowDialog(); this.Close(); }
private void btReplay_Click(object sender, EventArgs e) { Joc joc = new Joc(HighScore); this.Hide(); joc.ShowDialog(); this.Close(); }