blob: 54b0573eca62f92733974ac022982ea04624f064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
namespace Priority_Queue
{
public class FastPriorityQueueNode
{
/// <summary>
/// The Priority to insert this node at. Must be set BEFORE adding a node to the queue (ideally just once, in the node's constructor).
/// Should not be manually edited once the node has been enqueued - use queue.UpdatePriority() instead
/// </summary>
public float Priority { get; protected internal set; }
/// <summary>
/// Represents the current position in the queue
/// </summary>
public int QueueIndex { get; internal set; }
#if DEBUG
/// <summary>
/// The queue this node is tied to. Used only for debug builds.
/// </summary>
public object Queue { get; internal set; }
#endif
}
}
|