Ejemplo n.º 1
0
        static void Main()
        {
            Console.WriteLine("Welcome to the 7Stars application.");
            
            var playerName = "Pavel";
            var server = new Server();
            server.Start();


            var client = new Client(playerName);

            var username = "******";
            var password = "******";
            client.Login(username, password, server.Id);

            var game = new HorseRacing();
            client.StartGame(game);
            while (game.IsPlaying { Thread.Sleep(100); }


            Console.WriteLine("Hello World!");
        }
Ejemplo n.º 2
0
 public void StartGame(HorseRacing horseRacing)
 {
     throw new NotImplementedException();
 }