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

18 lines
285 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{
public:
2015-02-10 20:12:41 -05:00
BinLower();
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