Example #1
0
 void StopUnpauseProcess()
 {
     if (thisProcess != null && thisProcess.IsRunning())
     {
         thisProcess.Stop();
     }
     thisProcess = null;
 }
Example #2
0
 public void ExpireUnpauseProcess()
 {
     if (thisProcess != null && thisProcess.IsRunning())
     {
         thisProcess.Expire();
     }
     thisProcess = null;
 }
Example #3
0
 void StartUnpauseProcess()
 {
     StopUnpauseProcess();
     thisProcess = thisSlickBowShootingProcessFactory.CreateGameplayUnpauseProcess(
         this,
         thisUnpauseTime
         );
     thisProcess.Run();
 }