2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Autonomous/AutoDrive.h

19 lines
328 B
C
Raw Normal View History

2015-02-06 13:45:01 -05:00
#ifndef AUTODRIVE_H
#define AUTODRIVE_H
#include "Commands/Command.h"
#include "../../CommandBase.h"
#include "../../DentRobot.h"
#include "WPILib.h"
class AutoDrive: public Command{
public:
AutoDrive();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif