blob: 5a180e340441fc9f1b53b8e80a2682a6a0977a7d [file] [log] [blame]
namespace frc971.autonomous;
table AutonomousActionParams {
// The mode from the sensors when auto starts.
mode:int (id: 0);
}
table Goal {
run:uint (id: 0);
params:AutonomousActionParams (id: 1);
}
root_type Goal;