Пример #1
0
 public PostPlayProcess AddPostPlayProcess(PostPlayProcess process, int priority)
 {
     if (priority == 0)
     {
         PostPlayProcesses.Insert(0, process);
     }
     else
     {
         PostPlayProcesses.Add(process);
     }
     return(process);
 }
Пример #2
0
 public PostPlayProcess AddPostPlayProcess(PostPlayProcess process)
 {
     return(AddPostPlayProcess(process, 2));
 }