示例#1
0
        static void Main(string[] args)
        {
            Adventure newAdventure = new Adventure();
            Player    player       = new Player();

            player.chooseSupplies();
            newAdventure.chooseEnvironment();
            newAdventure.chooseEnding();
            Console.ReadLine();
        }