Beispiel #1
0
 public If(ConditionalBehavior condition, params Behavior[] behaviors)
 {
     this.condition = condition;
     this.behaviors = behaviors;
 }
Beispiel #2
0
 public ConditionalTransition(ConditionalBehavior condition, string targetState)
     : base(targetState)
 {
     this.condition = condition;
 }
 public ConditionalTransition(ConditionalBehavior condition, string targetState)
     : base(targetState)
 {
     this.condition = condition;
 }