示例#1
0
 protected void AddLastTask(RandoTask toPush)
 {
     this.Logic.Tasks.AddToBack(toPush);
     this.BackCount++;
 }
示例#2
0
 protected void AddNextTask(RandoTask toPush)
 {
     this.Logic.Tasks.AddToFront(toPush);
     this.FrontCount++;
 }