blob: d1e12239ea02b1fd782936257c78d1abba58fe5e [file] [log] [blame]
milind upadhyay6d50b902021-02-27 13:10:21 -08001namespace y2020.vision;
2
3enum Alliance : byte {
4 kRed,
5 kBlue,
6 kUnknown
7}
8
9enum Letter : byte {
10 kA,
11 kB
12}
13
14table GalacticSearchPath {
15 // Alliance of the path
16 alliance:Alliance (id: 0);
17
18 // Letter of the path
19 letter:Letter (id: 1);
20}
21
22root_type GalacticSearchPath;