2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Raise.cpp

19 lines
287 B
C++
Raw Normal View History

2015-01-16 19:29:55 -05:00
#include "Raise.h"
#include "../DentRobot.h"
2015-01-16 19:29:55 -05:00
Raise::Raise(){
}
void Raise::Initialize(){
}
void Raise::Execute(){
DentRobot::elevator->Run(0.4f);
2015-01-16 19:29:55 -05:00
}
bool Raise::IsFinished(){
2015-02-02 18:53:02 -05:00
return false;
2015-01-16 19:29:55 -05:00
}
void Raise::End(){
DentRobot::elevator->Run(0.0f);
2015-01-16 19:29:55 -05:00
}
void Raise::Interrupted(){
End();
2015-01-16 19:29:55 -05:00
}