Files
SPT-Server-Build/Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs
T
2025-01-08 13:41:25 +00:00

23 lines
461 B
C#

namespace Core.Generators.WeaponGen.Implementations;
public class UbglExternalMagGen : InventoryMagGen
{
public UbglExternalMagGen()
{
}
public int GetPriority()
{
return 1;
}
public bool CanHandleInventoryMagGen(InventoryMagGen inventoryMagGen)
{
throw new NotImplementedException();
}
public void Process(InventoryMagGen inventoryMagGen)
{
throw new NotImplementedException();
}
}