mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
15 lines
166 B
C++
15 lines
166 B
C++
#ifndef Shoot_H
|
|
#define Shoot_H
|
|
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
* Shoot the ball at the current angle.
|
|
*/
|
|
class Shoot: public CommandGroup {
|
|
public:
|
|
Shoot();
|
|
};
|
|
|
|
#endif
|