18 lines
652 B
C#
18 lines
652 B
C#
using Core.Models.Eft.Common;
|
|
|
|
namespace Core.Generators;
|
|
|
|
public class LocationGenerator
|
|
{
|
|
public StaticContainerProps GenerateContainerLoot(StaticContainerProps containerIn, List<StaticForcedProps> staticForced,
|
|
Dictionary<string, StaticLootDetails> staticLootDist, Dictionary<string, List<StaticAmmoDetails>> staticAmmoDist, string locationName)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<SpawnpointTemplate> GenerateDynamicLoot(LooseLoot dynamicLootDist, Dictionary<string, List<StaticAmmoDetails>> staticAmmoDist,
|
|
string locationName)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |