using Core.Models.Eft.Common; namespace Core.Generators; public class LocationGenerator { public StaticContainerProps GenerateContainerLoot(StaticContainerProps containerIn, List staticForced, Dictionary staticLootDist, Dictionary> staticAmmoDist, string locationName) { throw new NotImplementedException(); } public List GenerateDynamicLoot(LooseLoot dynamicLootDist, Dictionary> staticAmmoDist, string locationName) { throw new NotImplementedException(); } }