summaryrefslogtreecommitdiff
path: root/include/brain/sensor.h
blob: 652ce0758195f0cfa71993b77423be5d4411814e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "brain/neural_node.h"

class Sensor: public NeuralNode
{
public:
    Sensor()
    {
	_activationChanged = false;
    };
    void setActivation(double activation) { _activation = activation; }
};