Beispiel #1
0
        public bool IsExplored(PPos puv)
        {
            if (Disabled)
            {
                return(map.Contains(puv));
            }

            return(resolvedType.Contains(puv) && resolvedType[puv] > ShroudCellType.Shroud);
        }
Beispiel #2
0
 public bool Contains(PPos uv)
 {
     // Check that uv is inside the map area. There is nothing special
     // about explored here: any of the CellLayers would have been suitable.
     return(explored.Contains(uv));
 }