2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Autonomous/Autonomous.h

15 lines
260 B
C
Raw Normal View History

2015-02-06 13:45:01 -05:00
#ifndef AUTONOMOUS_H
#define AUTONOMOUS_H
2015-02-07 12:32:46 -05:00
#include "Commands/CommandGroup.h"
2015-02-06 13:45:01 -05:00
#include "../../CommandBase.h"
#include "../../DentRobot.h"
#include "WPILib.h"
class Autonomous: public CommandGroup{
public:
2015-02-13 17:34:38 -05:00
Autonomous(int);
2015-02-06 13:45:01 -05:00
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et