Exemplo n.º 1
0
 /// <summary>
 /// Checks if the statemachine has an active state of the specified class
 /// </summary>
 /// <param name="state"> The state to check for. </param>
 /// <returns> Returns if the specified state is active in the statemachine or not.</returns>
 public bool IsInState(System.Type state)
 {
     return(m_Logic.IsInState(state));
 }