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