mirror of
https://github.com/team2059/Dent
synced 2025-01-07 22:14:14 -05:00
12 lines
300 B
C++
12 lines
300 B
C++
|
#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
|