mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-28 02:11:43 +00:00
16 lines
238 B
C
16 lines
238 B
C
|
|
#ifndef Autonomous_H
|
||
|
|
#define Autonomous_H
|
||
|
|
|
||
|
|
#include "Commands/CommandGroup.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The main autonomous command to pickup and deliver the
|
||
|
|
* soda to the box.
|
||
|
|
*/
|
||
|
|
class Autonomous: public CommandGroup {
|
||
|
|
public:
|
||
|
|
Autonomous();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|