14 lines
285 B
C#
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();
|
|
}
|
|
} |