summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2017/Control.java
blob: b32eac7bd26a5f35bed3db9e9ff498ea5fc699c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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,
		compressorEnabled = true;
	public Control() {}
}