/// <summary> /// Checks whether this instance contains a particular state /// </summary> /// <typeparam name="T">state to check</typeparam> /// <returns><c>true</c>, if state is available else <c>false</c></returns> public bool ContainsState <T>() where T : IState { return(_fsm.ContainsState <T>()); }