예제 #1
0
 public static void AddToHandleQueueBack(ITreeHandleable handleable)
 {
     _handleQueue.Enqueue(handleable);
 }
예제 #2
0
 public static void AddToHandleQueueFront(ITreeHandleable handleable)
 {
     _handleQueue.Push(handleable);
 }