コード例 #1
0
ファイル: MinerGameFactory.cs プロジェクト: vbre/tasks_cs2
        public IMinerGame NewRandomGame(string playerName, Tuple <int, int> rowsCols, int bombs)
        {
            MinerGame NewRandomGame = new MinerGame(rowsCols.Item1, rowsCols.Item2, bombs);

            return(NewRandomGame);
        }
コード例 #2
0
ファイル: MinerGameFactory.cs プロジェクト: vbre/tasks_cs2
 public IMinerGame NewRandomGame(string playerName, Tuple<int, int> rowsCols, int bombs)
 {
     MinerGame NewRandomGame = new MinerGame(rowsCols.Item1, rowsCols.Item2, bombs);
     return NewRandomGame;
 }
コード例 #3
0
ファイル: MinerGameFactory.cs プロジェクト: vbre/tasks_cs2
        public IMinerGame NewEmptyGame(string playerName, Tuple <int, int> rowsCols)
        {
            MinerGame NewEmptyGame = new MinerGame(rowsCols.Item1, rowsCols.Item2);

            return(NewEmptyGame);
        }
コード例 #4
0
ファイル: MinerGameFactory.cs プロジェクト: vbre/tasks_cs2
 public IMinerGame NewEmptyGame(string playerName, Tuple<int, int> rowsCols)
 {
     MinerGame NewEmptyGame = new MinerGame(rowsCols.Item1, rowsCols.Item2);
     return NewEmptyGame;
 }