mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-20 00:17:20 -05:00
10 lines
186 B
Protocol Buffer
Vendored
10 lines
186 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Map.Fort;
|
|
|
|
message FortSummary {
|
|
string fort_summary_id = 1;
|
|
int64 last_modified_timestamp_ms = 2;
|
|
double latitude = 3;
|
|
double longitude = 4;
|
|
}
|