Files
allwpilib/eclipse-plugins/edu.wpi.first.wpilib.plugins.cpp/resources/templates/examples/PacGoat/src/Commands/ExtendShooter.h
Alex Henning c7e17b8e35 Added PacGoat code for C++.
Change-Id: I4fd19fbdc65c25c5bbcdce937a31bc6fa1c11cb4
2014-06-25 16:49:14 -07:00

20 lines
302 B
C++

#ifndef ExtendShooter_H
#define ExtendShooter_H
#include "WPILib.h"
/**
* Extend the shooter and then retract it after a second.
*/
class ExtendShooter: public Command {
public:
ExtendShooter();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif