aboutsummaryrefslogtreecommitdiff
path: root/fcp/tracing/tools/testdata/EnumType.fbs
blob: 7319cb3f218b5294d5d3abab0282afe1452210ea (plain)
1
2
3
4
5
6
7
8
include "fcp/tracing/tracing_schema_common.fbs";

enum Color : byte { Red = 0, Green = 1, Blue = 2 }

table Monster(tag: "MONS") {
  hp: int32;
  color : Color;
}