mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
15 lines
173 B
C++
15 lines
173 B
C++
#ifndef Collect_H
|
|
#define Collect_H
|
|
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
* Get the robot set to collect balls.
|
|
*/
|
|
class Collect: public CommandGroup {
|
|
public:
|
|
Collect();
|
|
};
|
|
|
|
#endif
|