示例#1
0
        public void newGame()
        {
            // Refesh background
            this.refresh();

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

            CaveSelection caves = new CaveSelection(_GameControl);

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

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