mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
10 lines
234 B
C++
10 lines
234 B
C++
|
#include "ReleaseTote.h"
|
||
|
#include "../../DentRobot.h"
|
||
|
#include "RollOut.h"
|
||
|
#include "../Autonomous/AutoDrive.h"
|
||
|
ReleaseTote::ReleaseTote(){
|
||
|
AddParallel(new RollOut());
|
||
|
AddParallel(new AutoDrive(0.5, 0.75));
|
||
|
}
|
||
|
// vim: ts=2:sw=2:et
|