public static bool HasMapSwf(MapInfo map)
 {
     return(ExistsAssembly && MapResourcePrivate.HasMapSwf(map));
 }
 public static IDictionary <int, Point> GetMapCellPoints(MapInfo map)
 {
     return(ExistsAssembly ? MapResourcePrivate.GetMapCellPoints(map) : new Dictionary <int, Point>());
 }
 public static IEnumerable <Point> GetMapFlags(MapInfo map)
 {
     return(ExistsAssembly ? MapResourcePrivate.GetMapFlags(map) : new Point[0]);
 }
 public static BitmapSource[] GetMapImages(MapInfo map)
 {
     return(ExistsAssembly ? MapResourcePrivate.GetMapImages(map) : null);
 }