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

7 lines
138 B
C++

#include "Autonomous.h"
#include "AutoDrive.h"
#include "../../DentRobot.h"
Autonomous::Autonomous(){
AddSequential(new AutoDrive());
}