mirror of
https://github.com/team2059/Dent
synced 2025-01-07 22:14:14 -05:00
19 lines
287 B
C++
19 lines
287 B
C++
#include "Raise.h"
|
|
#include "../DentRobot.h"
|
|
Raise::Raise(){
|
|
}
|
|
void Raise::Initialize(){
|
|
}
|
|
void Raise::Execute(){
|
|
DentRobot::elevator->Run(0.4f);
|
|
}
|
|
bool Raise::IsFinished(){
|
|
return false;
|
|
}
|
|
void Raise::End(){
|
|
DentRobot::elevator->Run(0.0f);
|
|
}
|
|
void Raise::Interrupted(){
|
|
End();
|
|
}
|