【发布时间】:2021-10-17 09:43:24
【问题描述】:
如何创建多根flatbuffer json文件?
table Login {
name:string;
password:string;
}
table Attack {
damage:short;
}
我创建了以下 json 文件
{
"Login": {
"name": "a",
"password": "a",
}
}
但得到错误:no root type set to parse json with
【问题讨论】:
标签: c++ flatbuffers