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

21 lines
323 B
C
Raw Normal View History

2015-02-10 20:12:41 -05:00
#ifndef BINRAISE_H
#define BINRAISE_H
#include "Commands/Command.h"
#include "WPILib.h"
2015-02-10 20:12:41 -05:00
class BinRaise: public Command{
private:
double timeout;
public:
BinRaise(double);
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
2015-02-10 20:12:41 -05:00
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et