Niko Sohmers | 3860f8a | 2024-01-12 21:05:19 -0800 | [diff] [blame] | 1 | include "y2024/constants/constants.fbs"; |
2 | |||||
3 | namespace y2024; | ||||
4 | |||||
5 | table TeamAndConstants { | ||||
6 | team:long (id: 0); | ||||
7 | data:Constants (id: 1); | ||||
8 | } | ||||
9 | |||||
10 | table ConstantsList { | ||||
11 | constants:[TeamAndConstants] (id: 0); | ||||
12 | } | ||||
13 | |||||
14 | root_type ConstantsList; |