2
0
mirror of https://github.com/team2059/Dent synced 2025-01-27 22:21:07 -05:00
dent/src/Commands/Drive.h

18 lines
235 B
C
Raw Normal View History

2015-01-16 19:29:55 -05:00
#ifndef DRIVE_H
#define DRIVE_H
#include "../CommandBase.h"
#include "WPILib.h"
class Drive: public CommandBase{
public:
Drive();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif