Exemple #1
0
 public ReversingActionWithTime(float time, ReversingTimeActionDelegate action)
 {
     this.time          = time;
     this.actionToCarry = action;
 }
Exemple #2
0
 public void RememberAction(ReversingTimeActionDelegate action)
 {
     actions.Push(new ReversingActionWithTime(Time, action));
 }