Exemplo n.º 1
0
        public static void StartGame()
        {
            Console.WriteLine ("Welcome to Rock, Paper, Scissors!");
            Console.WriteLine ("Player One, choose your weapon");
            string PlayerOneWeapon = Console.ReadLine();
            Console.WriteLine ("Player Two, choose your weapon");
            string PlayerTwoWeapon = Console.ReadLine();

            var game = new RPS ();
            Console.WriteLine (game.TwoPlayer (PlayerOneWeapon, PlayerTwoWeapon));
            StartGame ();
        }