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
CommitLineData
b2640783
LH
1package org.usfirst.frc.team3501.robot.commands;
2
3public class CommandGroup
4 extends edu.wpi.first.wpilibj.command.CommandGroup
5 implements CommandBase {
6
7 public CommandGroup(String commandGroupName) {
8 super(commandGroupName);
9 }
10}