2015-01-11 16:02:49 -05:00
|
|
|
#ifndef COMMAND_BASE_H
|
|
|
|
#define COMMAND_BASE_H
|
|
|
|
|
|
|
|
#include <string>
|
2015-01-16 19:29:55 -05:00
|
|
|
#include "Subsystems/Drivetrain.h"
|
|
|
|
#include "Subsystems/Collector.h"
|
|
|
|
#include "Subsystems/Elevator.h"
|
2015-01-11 16:02:49 -05:00
|
|
|
#include "OI.h"
|
|
|
|
#include "WPILib.h"
|
|
|
|
|
|
|
|
class CommandBase: public Command {
|
2015-01-16 20:12:48 -05:00
|
|
|
public:
|
|
|
|
CommandBase(char const *name);
|
|
|
|
CommandBase();
|
|
|
|
static void init();
|
|
|
|
static Drivetrain *drivetrain;
|
|
|
|
static Collector *collector;
|
|
|
|
static Elevator *elevator;
|
|
|
|
static OI *oi;
|
2015-01-11 16:02:49 -05:00
|
|
|
};
|
|
|
|
#endif
|