add flatbuffer dependencies

This commit is contained in:
Paulchen-Panther
2018-12-28 17:55:49 +01:00
parent d762aa2f3e
commit 3700566d10
12 changed files with 980 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace flatbuf;
enum Type : int {
REPLY = 0,
VIDEO = 1,
}
table HyperionReply {
type:Type;
success:bool;
error:string;
video:int;
}
root_type HyperionReply;