Esempio n. 1
0
        public void Play()
        {
            CurrentPath = Map.Paths[0];

            Console.WriteLine("You are now playing the game....add more game elements here...");


            while (this.Character.CurrentLocation < CurrentPath.Length)
            {
                Character.MoveForward(CurrentPath);
                CheckCurrentLocation();
            }
            //  while


            Utilities.LoadMenu(this, Utilities, "SaveGameData,ViewCharacterStats,Battle,Exit");
        }