summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/Control.java
blob: d7eadf545e6bbd826684ad585925b45fcd578e68 (plain)
1
2
3
4
5
6
7
8
9
package org.usfirst.frc.team4272.robot2016;

public class Control {
	double lDrive, rDrive, fBall, bBall, arm;

	public Control() {
		lDrive = rDrive = fBall = bBall = arm = 0;
	}
}