AIMA.Core.Agent.Impl.AProg.SimpleRule.Rule.Rule C# (CSharp) Method

Rule() public method

public Rule ( Condition aCon, Action anAction ) : System.Collections.Generic
aCon Condition
anAction Action
return System.Collections.Generic
    public Rule(Condition aCon, Action anAction)
    {
        Debug.Assert(null != aCon);
        Debug.Assert(null != anAction);

		con = aCon;
		action = anAction;
	}