Example #1
0
        protected override bool IsSatisfiedInternal(AIMachineCondition c1, AIMachineCondition c2)
        {
            if (c1.IsSatisfied() && c2.IsSatisfied())
            {
                return(true);
            }

            return(false);
        }
Example #2
0
 public AIMachineCondition_Binary_And(AIMachineCondition c1, AIMachineCondition c2) : base(c1, c2)
 {
 }
Example #3
0
 protected abstract bool IsSatisfiedInternal(AIMachineCondition c1, AIMachineCondition c2);
Example #4
0
 public AIMachineCondition_Binary(AIMachineCondition c1, AIMachineCondition c2)
 {
     condition1 = c1;
     condition2 = c2;
 }
Example #5
0
 public AIMachineTransition(AIMachineNode n, AIMachineCondition c)
 {
     node      = n;
     condition = c;
 }