switch double to int32 in location data

This commit is contained in:
MaximZaitsev
2016-08-15 12:50:00 +03:00
parent d80c2ea903
commit d8334548d7
@@ -7,8 +7,8 @@ message LocationResponse {
int32 code = 2;
message LocationData {
double x = 1;
double y = 2;
double angle = 3;
int32 x = 1;
int32 y = 2;
int32 angle = 3;
}
}