mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
Removed tabs
This commit is contained in:
parent
0036f2dd7a
commit
214318b5fb
@ -2,7 +2,6 @@
|
|||||||
#define COMMAND_BASE_H
|
#define COMMAND_BASE_H
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
//#include "Commands/Drive.h"
|
|
||||||
#include "Subsystems/Drivetrain.h"
|
#include "Subsystems/Drivetrain.h"
|
||||||
#include "Subsystems/Collector.h"
|
#include "Subsystems/Collector.h"
|
||||||
#include "Subsystems/Elevator.h"
|
#include "Subsystems/Elevator.h"
|
||||||
@ -10,7 +9,7 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
|
|
||||||
class CommandBase: public Command {
|
class CommandBase: public Command {
|
||||||
public:
|
public:
|
||||||
CommandBase(char const *name);
|
CommandBase(char const *name);
|
||||||
CommandBase();
|
CommandBase();
|
||||||
static void init();
|
static void init();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
|
|
||||||
class Collect: public CommandBase{
|
class Collect: public CommandBase{
|
||||||
public:
|
public:
|
||||||
Collect();
|
Collect();
|
||||||
void Initialize();
|
void Initialize();
|
||||||
void Execute();
|
void Execute();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
|
|
||||||
class Drive: public CommandBase{
|
class Drive: public CommandBase{
|
||||||
public:
|
public:
|
||||||
Drive();
|
Drive();
|
||||||
void Initialize();
|
void Initialize();
|
||||||
void Execute();
|
void Execute();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
|
|
||||||
class Eject: public CommandBase{
|
class Eject: public CommandBase{
|
||||||
public:
|
public:
|
||||||
Eject();
|
Eject();
|
||||||
void Initialize();
|
void Initialize();
|
||||||
void Execute();
|
void Execute();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
|
|
||||||
class Lower: public CommandBase{
|
class Lower: public CommandBase{
|
||||||
public:
|
public:
|
||||||
Lower();
|
Lower();
|
||||||
void Initialize();
|
void Initialize();
|
||||||
void Execute();
|
void Execute();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
|
|
||||||
class Raise: public CommandBase{
|
class Raise: public CommandBase{
|
||||||
public:
|
public:
|
||||||
Raise();
|
Raise();
|
||||||
void Initialize();
|
void Initialize();
|
||||||
void Execute();
|
void Execute();
|
||||||
|
4
src/OI.h
4
src/OI.h
@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
class OI
|
class OI
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
public:
|
public:
|
||||||
OI();
|
OI();
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
class Collector: public Subsystem
|
class Collector: public Subsystem
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
public:
|
public:
|
||||||
Collector();
|
Collector();
|
||||||
void InitDefaultCommand();
|
void InitDefaultCommand();
|
||||||
};
|
};
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
class Drivetrain: public Subsystem
|
class Drivetrain: public Subsystem
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
public:
|
public:
|
||||||
Drivetrain();
|
Drivetrain();
|
||||||
void InitDefaultCommand();
|
void InitDefaultCommand();
|
||||||
};
|
};
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
#include "WPILib.h"
|
#include "WPILib.h"
|
||||||
class Elevator: public Subsystem
|
class Elevator: public Subsystem
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
public:
|
public:
|
||||||
Elevator();
|
Elevator();
|
||||||
void InitDefaultCommand();
|
void InitDefaultCommand();
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user