10 lines
201 B
C++
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;
|
|
}; |