Total Complexity | 6 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package org.usfirst.frc.team3695.robot.commands; |
||
12 | public class CyborgCommandAscend extends Command { |
||
13 | |||
14 | Direction direction; |
||
15 | |||
16 | public CyborgCommandAscend() { |
||
17 | requires(Robot.SUB_HOOK); |
||
18 | requires(Robot.SUB_MAST); |
||
19 | } |
||
20 | |||
21 | protected void initialize() { |
||
22 | |||
23 | } |
||
24 | |||
25 | protected void execute() {} |
||
26 | |||
27 | protected boolean isFinished() { return false; } |
||
28 | |||
29 | protected void end() { |
||
30 | |||
31 | } |
||
32 | |||
33 | protected void interrupted() { |
||
34 | end(); |
||
35 | } |
||
37 |