mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 14:57:08 -05:00
11 lines
256 B
Protocol Buffer
Vendored
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;
|
|
} |