1enum AB:byte (private) { 2 A, 3 B, 4} 5 6struct Object (private) { 7 value: int; 8} 9 10union Any (private) { Game, Annotations } 11 12table Game (private) { 13 value: int; 14} 15 16table Annotations (private) { 17 value: int; 18}
View as plain text