mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-27 08:17:27 -05:00
11 lines
234 B
Protocol Buffer
Vendored
11 lines
234 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message GetGymDetailsMessage {
|
|
string gym_id = 1;
|
|
double player_latitude = 2;
|
|
double player_longitude = 3;
|
|
double gym_latitude = 4;
|
|
double gym_longitude = 5;
|
|
}
|