blob: 3326562d13809b65557da47e49b1cf913fc14224 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2014.control_loops.shooter;
2
3table Goal {
4 // Shot power in joules.
5 shot_power:double;
6 // Shoots as soon as this is true.
7 shot_requested:bool;
8 unload_requested:bool;
9 load_requested:bool;
10}
11
12root_type Goal;