private BTNode Behaviour(YellowRabbit yr)
    {
        BTNode root = Selector();

        return(root);
    }
 public YellowRabbitBehaviour(YellowRabbit yr) : base()
 {
     // base is done before this
     this.root = Behaviour(yr);
 }
Example #3
0
 public YellowRabbitController(YellowRabbit r) : base(r)
 {
 }