mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -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
|