#include "Behaviors/StateMachine.h"

$nodeclass StarLeg : StateNode {
  $setupmachine{

    forward: WalkForward(750)
    turnr: Turn(-2.513)
    complete: PostMachineCompletion()
    
    forward =PILOT=> turnr =PILOT=> complete
  }

}

REGISTER_BEHAVIOR(StarLeg);
