Pascal Serrarens 189ea6c689 Initial commit
2023-11-06 14:24:18 +01:00

9 lines
120 B
C++

#pragma once
#include <Thing.h>
class Sensor : public Thing {
public:
Sensor();
bool isDistanceSensor = false;
};