mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
25 lines
257 B
Plaintext
25 lines
257 B
Plaintext
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";
|