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

20 lines
320 B
C
Raw Normal View History

2015-02-10 20:12:41 -05:00
#ifndef BINLOWER_H
#define BINLOWER_H
#include "Commands/Command.h"
#include "WPILib.h"
2015-02-10 20:12:41 -05:00
class BinLower: public Command{
private:
float timeout;
public:
BinLower(float);
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