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