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

17 lines
252 B
C++

#ifndef LOWER_H
#define LOWER_H
#include "Commands/Command.h"
#include "WPILib.h"
class Lower: public Command{
public:
Lower();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif