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

25 lines
550 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 "Subsystems/Drivetrain.h"
#include "Subsystems/Collector.h"
#include "Subsystems/Elevator.h"
2015-02-10 20:12:41 -05:00
#include "Subsystems/BinElevator.h"
#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;
2015-02-10 20:12:41 -05:00
static BinElevator *binElevator;
2015-01-16 20:12:48 -05:00
static OI *oi;
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et