Exemple #1
0
 public static void Add(NGuiWindow windows, params object[] args)
 {
     Add(new Task(windows, args));
 }
Exemple #2
0
 public static bool AnyTaskFor(NGuiWindow window)
 {
     return tasks.Any(x => x.target == window);
 }
Exemple #3
0
 public Task(NGuiWindow newTarget, object[] newArgs)
 {
     target = newTarget;
     args = newArgs;
 }