Exemple #1
0
 internal GLoopAction(GLoopEngine ownerCore, Action action, int delayTime, GWhen taskEvent)
 {
     this.ownerCore = ownerCore;
     this.action    = action;
     this.timer     = delayTime;
     this.delayTime = delayTime;
     this.taskEvent = taskEvent;
 }
Exemple #2
0
 public GLoopGroup(GLoopEngine ownerCore, GWhen removeCondition)
 {
     this.OwnerCore  = ownerCore;
     TaskList        = new List <GLoopAction>();
     RemoveCondition = removeCondition;
 }