RoboidControl-cpp/Sensor.cpp
2024-05-31 09:53:21 +02:00

5 lines
130 B
C++

#include "Sensor.h"
Sensor::Sensor() : Thing(0) { // for now, id should be set properly later
this->type = Thing::SensorType;
}