13 lines
205 B
C#
13 lines
205 B
C#
using System;
|
|
|
|
namespace Gley.UrbanSystem.Internal
|
|
{
|
|
public interface IHeapItem<T> : IComparable<T>
|
|
{
|
|
int HeapIndex
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |