Example #1
0
        public void Remove(Entity entity)
        {
            MapEntities.Remove(entity);

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