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