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

11 lines
256 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Map.Fort;
import "POGOProtos/Enums/PokemonId.proto";
message FortLureInfo {
string fort_id = 1;
fixed64 encounter_id = 2;
.POGOProtos.Enums.PokemonId active_pokemon_id = 3;
int64 lure_expires_timestamp_ms = 4;
}