Exemplo n.º 1
0
 /// <summary>
 /// Adds an action to the end of the global queue, at the specified offset
 /// </summary>
 protected void QueueAction(PriorityAction action, int endOffset)
 {
     if (endOffset == 0)
     {
         QueueAction(action);
     }
     else
     {
         actions.Insert(actions.Count + endOffset, action);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Adds an action to the end of the global queue
 /// </summary>
 protected void QueueAction(PriorityAction action)
 {
     actions.Add(action);
 }