コード例 #1
0
ファイル: PriorityQueue.cs プロジェクト: wildrabbit/7drl-lib
 public T Dequeue()
 {
     return(heap.RemoveTop());
 }