コード例 #1
0
ファイル: Program.cs プロジェクト: heroictugboat/CoderCamps
        static void Main(string[] args)
        {
            Game myGame = new Game(1000); //Set up to play # rounds.
            var player1 = new UnTitForTat();
            var player2 = new UnTitForTat();

            myGame.RunGame(player1, player2);

            Console.ReadLine(); //pause
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: dandiellie/CoderCamps
        static void Main(string[] args)
        {
            Game myGame  = new Game(1000); //Set up to play # rounds.
            var  player1 = new UnTitForTat();
            var  player2 = new UnTitForTat();

            myGame.RunGame(player1, player2);

            Console.ReadLine(); //pause
        }