Example #1
0
 public bool sameAs(CustomMap other)
 {
     return(Location.Equals(other.Location) && CustomMapType.Equals(other.CustomMapType));
 }
Example #2
0
 public static void deleteCustomMap(CustomMap cm)
 {
     DynamicObjectDeleteCallback(cm);
     m_customMaps.Remove(cm);
     cm.cleanup();
 }
Example #3
0
 public static void customMapMoved(CustomMap cm, Rectangle prev)
 {
     DynamicObjectMoveCallback(cm, prev);
     //keepInView();
 }
Example #4
0
 public static void AddCustomMap(CustomMap cm)
 {
     m_customMaps.Add(cm);
 }
Example #5
0
 public static void addCustomMap(CustomMap cm)
 {
     m_customMaps.Add(cm);
     DynamicObjectCreateCallback(cm);		// takes care of displaying it on LayerCustomMap
 }
Example #6
0
 public bool sameAs(CustomMap other)
 {
     return Location.Equals(other.Location) && CustomMapType.Equals(other.CustomMapType);
 }