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

Matches() public method

public Matches ( EventInstance eventToMatch ) : bool
eventToMatch Moe.StateMachine.Events.EventInstance
return bool
		public override bool Matches(EventInstance eventToMatch)
		{
			return base.Matches(eventToMatch) && guard();
		}
	}