示例#1
0
 public virtual void enterController(CSIMachine machine)
 {
     //enter with the latest Proc machine
     if ((_currentProc != null) && (isPluggedIn == true))
     {
         _currentProc.EnterProcess();
     }
 }
示例#2
0
 public void EnterController(CSIMachine machine)
 {
     //enter with the latest state machine
     if (_currentState != null)
     {
         _currentState.Enter(machine);
     }
 }