Example #1
0
 private static void ForEachRepeatAction(RepeatAction action)
 {
     action.Tick();
 }
Example #2
0
 internal static bool RemoveRepeatAction(RepeatAction repeatAction)
 {
     return(_repeatsActions.Remove(repeatAction));
 }
Example #3
0
 internal static void AddRepeatAction(RepeatAction repeatAction)
 {
     _repeatsActions.Add(repeatAction);
 }