Files

15 lines
166 B
C
Raw Normal View History

#ifndef Shoot_H
#define Shoot_H
#include "WPILib.h"
/**
* Shoot the ball at the current angle.
*/
class Shoot: public CommandGroup {
public:
Shoot();
};
#endif