コード例 #1
0
        static void Main(string[] args)
        {
            //display rules x
            //choose 1 player vs. computer or 2 player x
            //get player names
            //Choose a gesture
            //Determine round winner, then ++ the score for the winner
            //Check scores against condition of best two out of three to see if there is a winner
            //If yes: Display Congrats
            //If no: Repeat steps 4 through 7
            //Ask to play again
            //If yes: new game
            //If no: Exit application
            Game game = new Game();

            game.RunGame();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            Game newGame = new Game();

            newGame.RunGame();
        }
コード例 #3
0
        static void Main(string[] args)
        {
            Game playGame = new Game();

            playGame.RunGame();
        }