Skip to content
Snippets Groups Projects
test.fbs 166 B
Newer Older
namespace com.google.flatbuffer.test;

table MyTable
{
    foo:int;
}

enum MyEnum:byte
{
    A, B, C
}

struct MyStruct
{
    a:int;
    b:int;
}

root_type MyTable;