get rid of merge error markers
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / AimAndAlign.java
CommitLineData
376b38ae
ME
1package org.usfirst.frc.team3501.robot.commands;
2
f5c39567
CZ
3import org.usfirst.frc.team3501.robot.Robot;
4
376b38ae
ME
5import edu.wpi.first.wpilibj.command.Command;
6
2c0fdbba 7public class AimAndAlign extends Command {
376b38ae 8
f5c39567
CZ
9 public AimAndAlign() {
10 }
376b38ae 11
f5c39567
CZ
12 @Override
13 protected void initialize() {
14 Robot.intakeArm.getArmAngle();
15 }
2faa7f35 16
f5c39567
CZ
17 @Override
18 protected void execute() {
19 }
376b38ae 20
f5c39567
CZ
21 @Override
22 protected boolean isFinished() {
23 return false;
24 }
376b38ae 25
f5c39567
CZ
26 @Override
27 protected void end() {
28 }
376b38ae 29
f5c39567
CZ
30 @Override
31 protected void interrupted() {
32 }
376b38ae 33}