Create Shoot command group skeleton
authorshainachen <shaina.sierra@gmail.com>
Thu, 12 Jan 2017 04:03:58 +0000 (20:03 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 14 Jan 2017 22:28:36 +0000 (14:28 -0800)
src/org/usfirst/frc/team3501/robot/commandGroups/Shoot.java [new file with mode: 0644]

diff --git a/src/org/usfirst/frc/team3501/robot/commandGroups/Shoot.java b/src/org/usfirst/frc/team3501/robot/commandGroups/Shoot.java
new file mode 100644 (file)
index 0000000..70ea60f
--- /dev/null
@@ -0,0 +1,9 @@
+package org.usfirst.frc.team3501.robot.commandGroups;
+
+import edu.wpi.first.wpilibj.command.CommandGroup;
+
+public class Shoot extends CommandGroup {
+       public Shoot() {
+
+       }
+}