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