mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-13 06:41:12 -05:00
14 lines
351 B
Protocol Buffer
Vendored
14 lines
351 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Map.Pokemon;
|
|
|
|
import "POGOProtos/Enums/PokemonId.proto";
|
|
|
|
message MapPokemon {
|
|
string spawn_point_id = 1;
|
|
fixed64 encounter_id = 2;
|
|
.POGOProtos.Enums.PokemonId pokemon_id = 3;
|
|
// After this timestamp, the pokemon will be gone.
|
|
int64 expiration_timestamp_ms = 4;
|
|
double latitude = 5;
|
|
double longitude = 6;
|
|
} |