mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 11:14:48 -05:00
11 lines
331 B
Protocol Buffer
Vendored
11 lines
331 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Map/Fort/FortData.proto";
|
|
import "POGOProtos/Map/Pokemon/WildPokemon.proto";
|
|
|
|
message PlayerUpdateResponse {
|
|
repeated .POGOProtos.Map.Pokemon.WildPokemon wild_pokemons = 1;
|
|
repeated .POGOProtos.Map.Fort.FortData forts = 2;
|
|
int32 forts_nearby = 3;
|
|
} |