/*
==========================================
Projeto Núcleo
Arquivo: sketch.ino
Versão: 0.5
==========================================
*/
#include "Brain.h"
#include "Effects.h"
#include "Perception.h"
#include "Events.h"
#include "StateMachine.h"
void setup() {
beginPerception();
beginEvents();
beginEffects();
beginStateMachine();
beginBrain();
}
void loop() {
updatePerception();
updateEvents();
updateBrain();
updateStateMachine();
updateEffects();
}