mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
19 lines
370 B
C++
19 lines
370 B
C++
|
#include "Compress.h"
|
||
|
#include <cmath>
|
||
|
#include "../DentRobot.h"
|
||
|
Compress::Compress() : Command("Compress"){
|
||
|
Requires(DentRobot::airCompressor);
|
||
|
}
|
||
|
void Compress::Initialize(){
|
||
|
}
|
||
|
void Compress::Execute(){
|
||
|
DentRobot::airCompressor->CreateCompressedAir();
|
||
|
}
|
||
|
bool Compress::IsFinished(){
|
||
|
return false;
|
||
|
}
|
||
|
void Compress::End(){
|
||
|
}
|
||
|
void Compress::Interrupted(){
|
||
|
}
|