Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
cb7da4be1f74da8a3196f414a2e3db2d0c5590a3
/
.
/
aos
/
events
/
pingpong.fbs
blob: 67e5015f065f25b072bbce14e69b676f40fa26c7 [
file
] [
log
] [
blame
]
Alex Perry
cb7da4b
2019-08-28 19:35:56 -0700
[
diff
] [
blame^
]
1
namespace
aos
.
examples
;
2
3
table
Ping
{
4
value
:
int
;
5
send_time
:
long
;
6
}
7
8
table
Pong
{
9
value
:
int
;
10
initial_send_time
:
long
;
11
}
12
13
root_type
Ping
;
14
root_type
Pong
;