POGOserver/POGOProtos/Map/Pokemon/WildPokemon.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

15 lines
341 B
Protocol Buffer

syntax = "proto3";
package POGOProtos.Map.Pokemon;
import "POGOProtos/Data/PokemonData.proto";
message WildPokemon {
fixed64 encounter_id = 1;
int64 last_modified_timestamp_ms = 2;
double latitude = 3;
double longitude = 4;
string spawn_point_id = 5;
.POGOProtos.Data.PokemonData pokemon_data = 7;
int32 time_till_hidden_ms = 11;
}