Files

15 lines
216 B
C
Raw Normal View History

#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