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