mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-12 12:45:48 -05:00
11 lines
234 B
Protocol Buffer
Vendored
11 lines
234 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message FortSearchMessage {
|
|
string fort_id = 1;
|
|
double player_latitude = 2;
|
|
double player_longitude = 3;
|
|
double fort_latitude = 4;
|
|
double fort_longitude = 5;
|
|
}
|