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

23 lines
422 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{
2015-02-13 21:41:38 -05:00
private:
double x, y;
2015-02-06 13:45:01 -05:00
public:
2015-02-13 17:34:38 -05:00
AutoDrive(double);
AutoDrive(double, double, double);
2015-02-06 13:45:01 -05:00
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et