summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2017/Control.java
blob: c8561c052d693694a05a5c6d80295cb181a7dae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This file is not sufficiently creative to qualify for copyright.
package org.usfirst.frc.team4272.robot2017;

public class Control {
	double lDrive = 0,
	       rDrive = 0,
	       climber = 0;
	boolean highGear = false,
		gedOut = false;
	public Control() {}
}