Ejemplo n.º 1
0
        public void Remove(Entity entity)
        {
            MapEntities.Remove(entity);

            entity.Moved -= OnEntityMoved;
        }
Ejemplo n.º 2
0
 //Removes a construct from the multi-spatial map
 public void Remove(Construct construct)
 {
     entities.Remove(construct);
     construct.Moved -= OnEntityMoved;
 }