Ejemplo n.º 1
0
        public void newGame()
        {
            // Refesh background
            this.refresh();

            CaveSelection caves = new CaveSelection(_GameControl);
            caves.Show(); // Show cave selection
        }
Ejemplo n.º 2
0
        public void newGame()
        {
            // Refesh background
            this.refresh();

            CaveSelection caves = new CaveSelection(_GameControl);

            caves.Show(); // Show cave selection
        }
Ejemplo n.º 3
0
        // Open playgame form with cave options
        public void startGame()
        {
            CaveSelection caveSelection = new CaveSelection(this);

            caveSelection.Show();
        }
Ejemplo n.º 4
0
        // Open playgame form with cave options
		public void startGame() 
        {
            CaveSelection caveSelection = new CaveSelection(this);
            caveSelection.Show();
		}