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

22 lines
360 B
C
Raw Normal View History

#ifndef TURN_H
#define TURN_H
#include "Commands/Command.h"
#include "../../CommandBase.h"
#include "../../DentRobot.h"
#include "WPILib.h"
class Turn: public Command{
2015-02-21 13:43:19 +00:00
private:
int degrees;
public:
2015-02-21 13:43:19 +00:00
Turn(int);
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif
// vim: ts=2:sw=2:et