summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/Autonomous.java
blob: 295cba98bd9c0b3b76f80e76bb4bedfebcd0bf06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.usfirst.frc.team4272.robot2016;

public class Autonomous {
	private final HwRobot robot;

	public Autonomous(HwRobot robot) {
		this.robot = robot;
	}

	public Control run(Control c) {
		return c;
	}
}