RoboidControl-cpp/Switch.cpp
2024-01-09 10:22:13 +01:00

11 lines
198 B
C++

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