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; } }