mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-29 17:26:52 -05:00
8 lines
146 B
Protocol Buffer
8 lines
146 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message PlayerUpdateMessage {
|
|
double latitude = 1;
|
|
double longitude = 2;
|
|
}
|