RoboidControl-cpp/Switch.cpp
2024-01-04 15:27:43 +01:00

6 lines
113 B
C++

#include "Switch.h"
Switch::Switch() { this->type = Thing::SwitchType; }
bool Switch::IsOn() { return false; }