2023-11-23 16:52:21 +01:00

10 lines
201 B
C++

#pragma once
#include "Thing.h"
/// @brief A sensor is a thing which can perform measurements in the environment
class Sensor : public Thing {
public:
Sensor();
bool isDistanceSensor = false;
};