#include "Behaviors/StateMachine.h"

$nodeclass Example1 : StateNode {

    $setupmachine{
        speak: SpeechNode("Press a button")
        bark: SoundNode("fart.wav")

        speak =B=> bark
        bark =T(2000)=> speak
    }

}

REGISTER_BEHAVIOR(Example1);
