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

9 lines
269 B
C#

namespace Core.Generators.WeaponGen;
public interface IInventoryMagGen
{
public abstract int GetPriority();
public abstract bool CanHandleInventoryMagGen(InventoryMagGen inventoryMagGen);
public abstract void Process(InventoryMagGen inventoryMagGen);
}