big refactor of command/commandbase/commandgroup. also add auton read from file.
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / CommandGroup.java
diff --git a/src/org/usfirst/frc/team3501/robot/commands/CommandGroup.java b/src/org/usfirst/frc/team3501/robot/commands/CommandGroup.java
new file mode 100644 (file)
index 0000000..fcb7d26
--- /dev/null
@@ -0,0 +1,10 @@
+package org.usfirst.frc.team3501.robot.commands;
+
+public class CommandGroup
+    extends edu.wpi.first.wpilibj.command.CommandGroup
+    implements CommandBase {
+
+    public CommandGroup(String commandGroupName) {
+        super(commandGroupName);
+    }
+}