about summary refs log tree commit diff stats
path: root/proto/data.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/data.proto')
-rw-r--r--proto/data.proto8
1 files changed, 7 insertions, 1 deletions
diff --git a/proto/data.proto b/proto/data.proto index 044e32c..808198e 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -93,6 +93,12 @@ message Vec3d {
93 optional double z = 3; 93 optional double z = 3;
94} 94}
95 95
96message VersionNumber {
97 optional uint64 major = 1;
98 optional uint64 minor = 2;
99 optional uint64 patch = 3;
100}
101
96message ProxyIdentifier { 102message ProxyIdentifier {
97 optional uint64 panel = 1; 103 optional uint64 panel = 1;
98 optional string answer = 2; 104 optional string answer = 2;
@@ -275,7 +281,7 @@ message DoorGroup {
275} 281}
276 282
277message AllObjects { 283message AllObjects {
278 optional uint64 version = 15; 284 optional VersionNumber version = 15;
279 285
280 repeated Map maps = 7; 286 repeated Map maps = 7;
281 repeated Room rooms = 1; 287 repeated Room rooms = 1;