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

10 lines
253 B
C++

#include "Commands/CommandGroup.h"
#include "ElevatorCycle.h"
#include "../../DentRobot.h"
#include "../Elevator/Raise.h"
#include "../Elevator/Lower.h"
ElevatorCycle::ElevatorCycle(){
AddSequential(new Raise(3.5));
AddSequential(new Lower(3.0));
}