flatbuffers/tests/union_vector/union_vector.fbs

25 lines
257 B
Plaintext
Raw Normal View History

2017-01-24 19:52:36 +00:00
table MuLan {
sword_attack_damage: int;
}
table Rapunzel {
hair_length: int;
}
table Belle {
books_read: int;
}
union Character {
MuLan,
Rapunzel,
Belle,
}
table Movie {
characters: [Character];
}
root_type Movie;
file_identifier "MOVI";