#include "Behaviors/StateMachine.h"
$nodeclass YesIndeed : StateNode{

	$setupmachine{
		launch: StateNode =N=> {nod, speak}
		speak: SpeechNode("Yes Indeed")
		nod: DynamicMotionSequenceNode("nodyes.mot") 
	}
}
REGISTER_BEHAVIOR(YesIndeed);
