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