mirror of
https://github.com/Team4388/Robot-Essentials.git
synced 2026-06-09 00:38:01 -06:00
Formating and Conventions Work
- Moved controller code to utilities - added m_ prefix to member variables to stick with conventions
This commit is contained in:
@@ -33,6 +33,10 @@ public enum LEDPatterns {
|
||||
|
||||
// GETTERS/SETTERS
|
||||
private final float id;
|
||||
LEDPatterns(float id) { this.id = id; }
|
||||
public float getValue() { return id; }
|
||||
LEDPatterns(float id) {
|
||||
this.id = id;
|
||||
}
|
||||
public float getValue() {
|
||||
return id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user