Files
zeling_v2/Assets/PathBerserker2d/Scripts/PathBerserker2d/High-Speed-Priority-Queue/StablePriorityQueueNode.cs
2026-05-08 11:04:00 +08:00

11 lines
272 B
C#

namespace Priority_Queue
{
internal class StablePriorityQueueNode : FastPriorityQueueNode
{
/// <summary>
/// Represents the order the node was inserted in
/// </summary>
public long InsertionIndex { get; internal set; }
}
}