• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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