2024-11-19 11:48:21 +01:00

13 lines
205 B
C#

using System;
namespace Gley.UrbanSystem.Internal
{
public interface IHeapItem<T> : IComparable<T>
{
int HeapIndex
{
get;
set;
}
}
}