xref: /aosp_15_r20/external/federated-compute/fcp/tracing/tools/testdata/NonTableObjectsAreSkipped.fbs (revision 14675a029014e728ec732f129a32e299b2da0601)
1include "fcp/tracing/tracing_schema_common.fbs";
2
3attribute "priority";
4
5enum Color : byte { Red, Green, Blue }
6
7struct Vec3 {
8  x: float;
9  y: float;
10  z: float;
11}
12
13table Monster(tag: "MONS") {
14  hp: int32;
15}
16