WuhuIslandTesting/Library/PackageCache/com.stresslevelzero.marrow.sdk@1.2.0/Scripts/SLZ.Marrow/SLZ.Marrow.Zones/IZoneLinkable.cs

12 lines
223 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
namespace SLZ.Marrow.Zones
{
public interface IZonePrioritizable
{
public int Priority { get; }
}
public interface IZoneLinkable<in TZoneActivator>
where TZoneActivator : class
{
}
}