Example #1
0
        public IMinerGame NewRandomGame(string playerName, Tuple <int, int> rowsCols, int bombs)
        {
            MinerGame NewRandomGame = new MinerGame(rowsCols.Item1, rowsCols.Item2, bombs);

            return(NewRandomGame);
        }
Example #2
0
 public IMinerGame NewRandomGame(string playerName, Tuple<int, int> rowsCols, int bombs)
 {
     MinerGame NewRandomGame = new MinerGame(rowsCols.Item1, rowsCols.Item2, bombs);
     return NewRandomGame;
 }
Example #3
0
        public IMinerGame NewEmptyGame(string playerName, Tuple <int, int> rowsCols)
        {
            MinerGame NewEmptyGame = new MinerGame(rowsCols.Item1, rowsCols.Item2);

            return(NewEmptyGame);
        }
Example #4
0
 public IMinerGame NewEmptyGame(string playerName, Tuple<int, int> rowsCols)
 {
     MinerGame NewEmptyGame = new MinerGame(rowsCols.Item1, rowsCols.Item2);
     return NewEmptyGame;
 }