Esempio n. 1
0
 static void Main(string[] args)
 {
     RockPaperScissorsGame game = new RockPaperScissorsGame();
     game.Play();
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            var rpsg = new RockPaperScissorsGame();

            rpsg.Play();
        }