Rename word Up to Continious and rename word Intake to Defense
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / defensearm / MoveDefenseArmContinuous.java
CommitLineData
2c0391a2
E
1package org.usfirst.frc.team3501.robot.commands.defensearm;
2
3import edu.wpi.first.wpilibj.command.Command;
4
04a9c06e 5public class MoveDefenseArmContinuous extends Command {
2c0391a2 6
04a9c06e 7 public MoveDefenseArmContinuous() {
2c0391a2
E
8 }
9
10 @Override
11 protected void initialize() {
12 }
13
14 @Override
15 protected void execute() {
16 }
17
18 @Override
19 protected boolean isFinished() {
20 return false;
21 }
22
23 @Override
24 protected void end() {
25 }
26
27 @Override
28 protected void interrupted() {
29 }
30}