blob: ef8e915247c7e88c9a16edf3dd0fa7f0a912fde5 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971.autonomous;
2
Alex Perrycb7da4b2019-08-28 19:35:56 -07003table AutonomousActionParams {
4 // The mode from the sensors when auto starts.
5 mode:int;
6}
7
8table Goal {
9 run:uint;
10 params:AutonomousActionParams;
11}
Austin Schuhed5b26d2019-12-05 20:51:59 -080012
13root_type Goal;