mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
25 lines
550 B
C++
25 lines
550 B
C++
#ifndef COMMAND_BASE_H
|
|
#define COMMAND_BASE_H
|
|
|
|
#include <string>
|
|
#include "Subsystems/Drivetrain.h"
|
|
#include "Subsystems/Collector.h"
|
|
#include "Subsystems/Elevator.h"
|
|
#include "Subsystems/BinElevator.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 BinElevator *binElevator;
|
|
static OI *oi;
|
|
};
|
|
#endif
|
|
// vim: ts=2:sw=2:et
|