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

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

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