private void RestartGame() { lvl2 newWindow = new lvl2(); newWindow.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) //loads the next level { lvl2 storyWindow = new lvl2(); storyWindow.Show(); this.Close(); }