Files

15 lines
173 B
C
Raw Normal View History

#ifndef Collect_H
#define Collect_H
#include "WPILib.h"
/**
* Get the robot set to collect balls.
*/
class Collect: public CommandGroup {
public:
Collect();
};
#endif