Files
SPT-Server-Build/Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs
T
2025-01-11 21:01:32 +00:00

27 lines
500 B
C#

using Core.Annotations;
namespace Core.Generators.WeaponGen.Implementations;
[Injectable]
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();
}
}