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

12 lines
300 B
C++
Raw Normal View History

2015-02-13 21:41:38 -05:00
#include "CollectTote.h"
#include "../../DentRobot.h"
#include "../Autonomous/AutoDrive.h"
#include "RollIn.h"
#include "CloseCollector.h"
CollectTote::CollectTote(){
AddParallel(new RollIn());
AddParallel(new AutoDrive(0.5, -0.75));
AddSequential(new CloseCollector());
}
// vim: ts=2:sw=2:et