mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-20 08:27:22 -05:00
9 lines
166 B
Protocol Buffer
Vendored
9 lines
166 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message FortDetailsMessage {
|
|
string fort_id = 1;
|
|
double latitude = 2;
|
|
double longitude = 3;
|
|
}
|