Namespace: Priority_Queue
public class StablePriorityQueueNode : FastPriorityQueueNode
Inheritance Object → FastPriorityQueueNode → StablePriorityQueueNode
Represents the order the node was inserted in
public long InsertionIndex { get; internal set; }
The Priority to insert this node at. Cannot be manually edited - see queue.Enqueue() and queue.UpdatePriority() instead
public float Priority { get; protected internal set; }
Represents the current position in the queue
public int QueueIndex { get; internal set; }
public StablePriorityQueueNode()