Beispiel #1
0
 public Decorator(Func <bool> check, BTNode decorated)
 {
     this.check     = check;
     this.decorated = decorated;
 }
Beispiel #2
0
 public Inverter(BTNode node)
 {
     this.node = node;
 }