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