mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
15 lines
256 B
C
15 lines
256 B
C
|
#ifndef CHECKROBOT_H
|
||
|
#define CHECKROBOT_H
|
||
|
|
||
|
#include "Commands/CommandGroup.h"
|
||
|
#include "../../CommandBase.h"
|
||
|
#include "../../DentRobot.h"
|
||
|
#include "WPILib.h"
|
||
|
|
||
|
class CheckRobot: public CommandGroup{
|
||
|
public:
|
||
|
CheckRobot();
|
||
|
};
|
||
|
#endif
|
||
|
// vim: ts2:sw=2:et
|