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

13 lines
328 B
C++

#include "CollectTote.h"
#include "../../DentRobot.h"
#include "../Autonomous/AutoDrive.h"
#include "RollIn.h"
#include "CloseCollector.h"
CollectTote::CollectTote(){
AddParallel(new CloseCollector());
AddSequential(new RollIn());
// TODO: Fix null error
//AddParallel(new AutoDrive(0.5, -0.75));
}
// vim: ts=2:sw=2:et