X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2FCommandGroup.java;fp=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2FCommandGroup.java;h=fcb7d26dc30c1bd1a1c8d2f515bb0bf1862243d7;hb=b26407834f93b26caa7617d3cfcdd7a39c732818;hp=0000000000000000000000000000000000000000;hpb=3cd438bd5b650a27b84ef37224025cd7f6086e7c;p=3501%2F3501-spark-go 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 index 0000000..fcb7d26 --- /dev/null +++ b/src/org/usfirst/frc/team3501/robot/commands/CommandGroup.java @@ -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); + } +}