namespace Svelto.DataStructures { public class PriorityQueueEntityView { /// /// The Priority to insert this entityView at. Must be set BEFORE adding a entityView to the queue /// public double Priority { get; set; } /// /// Used by the priority queue - do not edit this value. /// Represents the order the entityView was inserted in /// public long InsertionIndex { get; set; } /// /// Used by the priority queue - do not edit this value. /// Represents the current position in the queue /// public int QueueIndex { get; set; } } }