#ifndef LowGoal_H #define LowGoal_H #include "WPILib.h" /** * Spit the ball out into the low goal assuming that the robot is in front of it. */ class LowGoal: public CommandGroup { public: LowGoal(); }; #endif