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