Moe.StateMachine.Transitions.Transition.Matches C# (CSharp) Method

Matches() public method

public Matches ( EventInstance eventToMatch ) : bool
eventToMatch Moe.StateMachine.Events.EventInstance
return bool
		public virtual bool Matches(EventInstance eventToMatch)
		{
			return eventToMatch.MatchesTransition(this);
		}
	}