public POI(string id, POITypes type, POIDesigns design, POIShapes shape, List <Position> shapeCords, bool active = true, bool inverted = false, string poiTypeSpecification = "")
 {
     Id                = id;
     Type              = type;
     Design            = design;
     Shape             = shape;
     ShapeCords        = shapeCords;
     Inverted          = inverted;
     TypeSpecification = poiTypeSpecification;
     Active            = active;
 }
 public PointOfInterest(POITypes typ, string n, string d = null)
 {
     PoiType = typ;
     Name    = n;
     if (d == null)
     {
         Description = LoadedDescriptionsByType[PoiType].GetRandom();
     }
     else
     {
         Description = d;
     }
 }