mirror of
https://github.com/Team4388/2024AcrossTheRidgebotiverse.git
synced 2026-06-09 00:38:02 -06:00
13 lines
288 B
Java
13 lines
288 B
Java
|
|
package frc4388.utility;
|
||
|
|
|
||
|
|
public class UtilityStructs {
|
||
|
|
public static class TimedOutput {
|
||
|
|
public double leftX = 0.0;
|
||
|
|
public double leftY = 0.0;
|
||
|
|
public double rightX = 0.0;
|
||
|
|
public double rightY = 0.0;
|
||
|
|
|
||
|
|
public long timedOffset = 0;
|
||
|
|
}
|
||
|
|
}
|