Esempio n. 1
0
 public void StopTwang()
 {
     if (thisProcess != null && thisProcess.IsRunning())
     {
         thisProcess.Stop();
     }
     thisProcess = null;
 }
Esempio n. 2
0
 public void Twang()
 {
     StopTwang();
     thisProcess = thisSlickBowShootingProcessFactory.CreateArrowTwangProcess(
         this,
         twangTime
         );
     thisProcess.Run();
 }