コード例 #1
0
ファイル: RunCloudBall.cs プロジェクト: voidgit/CloudBall
 static void Main(string[] args)
 {
     using (var game = new Client.Client(new TeamYojig.First(), new TeamRNA.TestSquad()))
     {
         game.Run();
     }
 }
コード例 #2
0
ファイル: RunCloudBall.cs プロジェクト: yojig/CloudBall
        static void Main(string[] args)
        {
            //for team ice there are two dlls
            using (var game = new Client.Client(new TeamRNA.Squad(), new TeamIce.TeamIce()))

            //using (var game = new Client.Client(new TeamRNA.Squad(), new TeamRNA.TestSquad()))
            //using (var game = new Client.Client(new TeamRNA.Squad(), new TeamYojig.First()))
            {
                game.Run();
            }
        }
コード例 #3
0
		static void Main(string[] args)
		{
			var teams = new List<ITeam>()
			{
				//TeamFactory.Load(@"*\Engines\*.dll"),
				new CloudBall.Engines.Toothless.Bot(),
				new CloudBall.Engines.SimpleStart(),
			};

			using (Client.Client client = new Client.Client(teams[0], teams[1]))
			{
				client.Run();
			}
		}
コード例 #4
0
        static void Main(string[] args)
        {
            var teams = new List <ITeam>()
            {
                new CloudBall.Engines.LostKeysUnited.LostKeysUnited(),
                //TeamFactory.Load(@"*\Arena\Engines\Wolkenhondjes_6.1.dll"),
                new SimpleStart(),
            };

            using (Client.Client client = new Client.Client(teams[0], teams[2]))
            {
                client.Run();
            }
        }
コード例 #5
0
		static void Main(string[] args)
		{
			var teams = new List<ITeam>()
			{
				new CloudBall.Engines.Toothless.Bot(),
				TeamFactory.Load(@"C:\Data\CodeReview\Wolkenhondjes_6.1.dll"),
				new CloudBall.Engines.SimpleStart(),
			};

			using (Client.Client client = new Client.Client(teams[0], teams[1]))
			{
				client.Run();
			}
		}
コード例 #6
0
		static void Main(string[] args)
		{
			var teams = new List<ITeam>()
			{
				new CloudBall.Engines.LostKeysUnited.LostKeysUnited(),
				//TeamFactory.Load(@"*\Arena\Engines\Wolkenhondjes_6.1.dll"),
				new SimpleStart(),
			};

			using (Client.Client client = new Client.Client(teams[0], teams[2]))
			{
				client.Run();
			}
		}
コード例 #7
0
ファイル: RunCloudBall.cs プロジェクト: helderman/CloudBall
        static void Main(string[] args)
        {
            var teams = new List<ITeam>()
            {
                new CloudBall.Engines.Dummy(),
                //TeamFactory.Load(@"*\Engines\*.dll"),
                new CloudBall.Engines.GoForTheBall(),
                new CloudBall.Engines.SimpleStart(),
                new CloudBall.Engines.Stonewall(),
            };

            using (Client.Client client = new Client.Client(teams[1], teams[3]))
            {
                client.Run();
            }
        }