change location of base files
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / Command.java
diff --git a/src/org/usfirst/frc/team3501/robot/commands/Command.java b/src/org/usfirst/frc/team3501/robot/commands/Command.java
deleted file mode 100644 (file)
index 42c58d6..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.usfirst.frc.team3501.robot.commands;
-
-import edu.wpi.first.wpilibj.command.Scheduler;
-
-public abstract class Command
-    extends edu.wpi.first.wpilibj.command.Command
-    implements CommandBase {
-
-    public Command(String commandName) {
-        super(commandName);
-    }
-
-    protected void schedule(Command c) {
-        Scheduler.getInstance().add(c);
-    }
-
-    protected void initialize() {}
-
-    protected void execute() {}
-
-    protected void end() {}
-
-    protected void interrupted() {}
-}