10 lines
221 B
C++

#include "Motor.h"
RoboidControl::Motor::Motor(Participant* owner) {}
RoboidControl::Motor::Motor(Thing* parent) {}
void RoboidControl::Motor::SetTargetSpeed(float targetSpeed) {
this->targetSpeed = targetSpeed;
}