mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-22 17:37:24 -05:00
10 lines
212 B
Protocol Buffer
Vendored
10 lines
212 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message EncounterMessage {
|
|
fixed64 encounter_id = 1;
|
|
string spawn_point_id = 2;
|
|
double player_latitude = 3;
|
|
double player_longitude = 4;
|
|
}
|