James Kuszmaul | d67f6d2 | 2023-02-05 17:37:25 -0800 | [diff] [blame] | 1 | include "y2023/constants/constants.fbs"; |
2 | |||||
3 | namespace y2023; | ||||
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; |