mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
20 lines
302 B
C
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
|