예제 #1
0
 static void Main(string[] args)
 {
     RockPaperScissorsGame game = new RockPaperScissorsGame();
     game.Play();
 }
예제 #2
0
파일: Program.cs 프로젝트: chrissc6/RPS
        static void Main(string[] args)
        {
            var rpsg = new RockPaperScissorsGame();

            rpsg.Play();
        }