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

19 lines
356 B
C
Raw Normal View History

2015-01-29 14:53:11 -05:00
#ifndef STARTCOMPRESSING_H
#define STARTCOMPRESSING_H
#include "../../CommandBase.h"
#include "../../DentRobot.h"
2015-01-31 15:02:33 -05:00
#include "Commands/Command.h"
2015-01-29 14:53:11 -05:00
#include "WPILib.h"
class StartCompressing: public Command{
public:
StartCompressing();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif