From 416c4380536797f5ad2b474096beb64d5b0b2eab Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 Jan 2016 16:50:45 -0800 Subject: [PATCH] add Shooter subsystem --- .../frc/team3501/robot/subsystems/Shooter.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java new file mode 100755 index 00000000..3e98e5d3 --- /dev/null +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java @@ -0,0 +1,16 @@ +package org.usfirst.frc.team3501.robot.subsystems; + +import edu.wpi.first.wpilibj.command.Subsystem; + +public class Shooter extends Subsystem{ + + public Shooter(){ + + } + + @Override + protected void initDefaultCommand() { + // TODO Auto-generated method stub + + } +} -- 2.30.2