Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
b39f452ecd1ee9d0e889b977df2bcb32efd8c1c8
/
.
/
frc971
/
autonomous
/
auto.fbs
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
;