Exemplo n.º 1
0
 void StopAndClearProcess()
 {
     if (thisProcess.IsRunning())
     {
         thisProcess.Stop();
     }
     thisProcess = null;
 }
Exemplo n.º 2
0
 public override void OnEnter()
 {
     thisProcess = thisProcessFactory.CreateItemIconEmptifyProcess(
         thisItemIconImage,
         thisStateEngine,
         thisItemIcon,
         thisRemovesEmpty
         );
     thisProcess.Run();
 }