Beispiel #1
0
        internal void CoverArea()
        {
            mVisited = new List <int>();

            List <int> path = Pathfinder.CoverArea(Location.Id);

            FollowPath(path);

            CoreUI.Instance.LogPanel.Log("Area '" + Location.Name + "' coverage ended");
            mVisited.Clear();
        }