public void newGame() { // Refesh background this.refresh(); CaveSelection caves = new CaveSelection(_GameControl); caves.Show(); // Show cave selection }
// Open playgame form with cave options public void startGame() { CaveSelection caveSelection = new CaveSelection(this); caveSelection.Show(); }