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

10 lines
237 B
C++
Raw Normal View History

2015-02-13 21:41:38 -05:00
#include "CollectTote.h"
#include "../../DentRobot.h"
#include "AutoDrive.h"
#include "../Collector/RollIn.h"
2015-02-13 21:41:38 -05:00
CollectTote::CollectTote(){
2015-02-15 17:54:59 -05:00
AddParallel(new AutoDrive(1.0, -0.75));
2015-02-21 08:43:19 -05:00
AddSequential(new RollIn(1.0));
2015-02-13 21:41:38 -05:00
}
// vim: ts=2:sw=2:et