12 lines
223 B
C#
12 lines
223 B
C#
|
namespace SLZ.Marrow.Zones
|
||
|
{
|
||
|
public interface IZonePrioritizable
|
||
|
{
|
||
|
public int Priority { get; }
|
||
|
}
|
||
|
|
||
|
public interface IZoneLinkable<in TZoneActivator>
|
||
|
where TZoneActivator : class
|
||
|
{
|
||
|
}
|
||
|
}
|