From 71971cc8513ce55d59bc56fe14d0b9bf10f97afb Mon Sep 17 00:00:00 2001 From: shainachen Date: Wed, 11 Jan 2017 20:03:58 -0800 Subject: [PATCH] Create Shoot command group skeleton --- .../usfirst/frc/team3501/robot/commandGroups/Shoot.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/org/usfirst/frc/team3501/robot/commandGroups/Shoot.java 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 index 0000000..70ea60f --- /dev/null +++ b/src/org/usfirst/frc/team3501/robot/commandGroups/Shoot.java @@ -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() { + + } +} -- 2.30.2