Files
SPT-Server-Build/Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs
T
2025-01-15 17:02:09 +00:00

27 lines
518 B
C#

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