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