Beispiel #1
0
 public PrePlayProcess AddPrePlayProcess(PrePlayProcess process, int priority)
 {
     if (priority == 0)
     {
         PrePlayProcesses.Insert(0, process);
     }
     else
     {
         PrePlayProcesses.Add(process);
     }
     return(process);
 }
Beispiel #2
0
 public PrePlayProcess AddPrePlayProcess(PrePlayProcess process)
 {
     return(AddPrePlayProcess(process, 2));
 }