2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/Commands/Elevator/Lower.cpp

19 lines
310 B
C++

#include "Lower.h"
#include "../../DentRobot.h"
Lower::Lower() : Command("Lower"){
}
void Lower::Initialize(){
}
void Lower::Execute(){
DentRobot::elevator->Run(-0.4f);
}
bool Lower::IsFinished(){
return false;
}
void Lower::End(){
DentRobot::elevator->Run(0.0f);
}
void Lower::Interrupted(){
End();
}