private void button3_Click(object sender, EventArgs e) { PantallaAhorcado pant = new PantallaAhorcado(this); this.Hide(); pant.Show(); pant.modoDificil(); }
public GameOver(Form1 f, PantallaAhorcado pant) { InitializeComponent(); this.f = f; this.p = pant; }
public Winner(Form1 f, PantallaAhorcado p) { InitializeComponent(); this.f = f; this.p = p; }