2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/src/CommandBase.h

23 lines
463 B
C
Raw Normal View History

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