9 lines
120 B
C++
9 lines
120 B
C++
#pragma once
|
|
|
|
#include "Thing.h"
|
|
|
|
class Sensor : public Thing {
|
|
public:
|
|
Sensor();
|
|
bool isDistanceSensor = false;
|
|
}; |