change location of base files
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / CloseClaw.java
CommitLineData
b449387d
LH
1package org.usfirst.frc.team3501.robot.commands;
2
5b3b1652
LH
3import org.usfirst.frc.team3501.bases.Command;
4
b2640783 5public class CloseClaw extends Command {
b449387d
LH
6
7 public CloseClaw() {
8 super("CloseClaw");
9 requires(claw);
10 }
11
12 protected void initialize() {
13 claw.close();
14 }
15
16 protected boolean isFinished() {
17 return true;
18 }
19}