blob: 5a180e340441fc9f1b53b8e80a2682a6a0977a7d [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.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08005 mode:int (id: 0);
Alex Perrycb7da4b2019-08-28 19:35:56 -07006}
7
8table Goal {
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08009 run:uint (id: 0);
10 params:AutonomousActionParams (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -070011}
Austin Schuhed5b26d2019-12-05 20:51:59 -080012
13root_type Goal;