예제 #1
0
 public bool IsInState(Type stateType)
 {
     if (_currentState == null)
     {
         return(false);
     }
     return(_currentState.GetType() == stateType);
 }