namespace IFramework.Queue
{
///
/// 快速优先级队列节点
///
public class FastPriorityQueueNode
{
///
/// 节点元素的优先级
.
/// 无法修改 - 请查阅 queue.Enqueue() 和 queue.UpdatePriority()
///
public float priority { get; protected internal set; }
///
/// 当前元素在队列里的位置
///
public int position { get; internal set; }
}
}