blob: 405f35b988472139c57a5560eb715ea2fd85b1a4 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2016.actors.superstructure_action;
2
3// Parameters to send with start.
4table SuperstructureActionParams {
5 partial_angle:double;
6 delay_time:double;
7 full_angle:double;
8 shooter_angle:double;
9}
10
11table Goal {
12 run:uint;
13 params:SuperstructureActionParams;
14}
15
16root_type Goal;