mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-28 00:37:03 -05:00
8 lines
169 B
Protocol Buffer
8 lines
169 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message GetPlayerMessage {
|
|
// Human readable app version, e.g. "0.31.1"
|
|
string app_version = 1;
|
|
}
|