#ifndef COMMAND_BASE_H #define COMMAND_BASE_H #include #include "Subsystems/Drivetrain.h" #include "Subsystems/Collector.h" #include "Subsystems/Elevator.h" #include "Subsystems/DIO.h" #include "Subsystems/AirCompressor.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 DIO* dio; static AirCompressor *airCompressor; static OI *oi; }; #endif