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