Create command package for shooter and create skeleton commands
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunIndexWheelContinuous.java
1 package org.usfirst.frc.team3501.robot.commands.shooter;
2
3 import edu.wpi.first.wpilibj.command.Command;
4
5 /**
6 * Runs index wheel continuously until ________
7 */
8 public class RunIndexWheelContinuous extends Command {
9
10 @Override
11 protected boolean isFinished() {
12 // TODO Auto-generated method stub
13 return false;
14 }
15
16 }