Formating and Conventions Work

- Moved controller code to utilities
- added m_ prefix to member variables to stick with conventions
This commit is contained in:
HFocus
2019-08-07 18:46:31 -06:00
parent ecef9065de
commit 745d55342d
6 changed files with 16 additions and 11 deletions
@@ -0,0 +1,18 @@
package frc4388.utility.controller;
public interface IHandController {
public double getLeftXAxis();
public double getLeftYAxis();
public double getRightXAxis();
public double getRightYAxis();
public double getLeftTriggerAxis();
public double getRightTriggerAxis();
public int getDpadAngle();
}