示例#1
0
        public static void StartGame()
        {
            Console.WriteLine("Welcome to the game.");
            Console.WriteLine("This is just practice.");

            playerCharacter = new Player();
            playerCharacter.Dialog("Hello world, my name is " + playerCharacter.GetCharacterName() + ", I talk in the color " + playerCharacter.GetDialogColor() + ".");

            InitialiseRooms();
        }