Files
SPT-Server-Build/Core/Generators/PMCLootGenerator.cs
T

14 lines
285 B
C#

namespace Core.Generators;
public class PMCLootGenerator
{
public List<string> GeneratePMCPocketLootPool()
{
throw new NotImplementedException();
}
public List<string> GeneratePMCBackpackLootPool()
{
throw new NotImplementedException();
}
}