mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-13 21:26:11 -05:00
11 lines
278 B
Protocol Buffer
11 lines
278 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Map/MapCell.proto";
|
|
import "POGOProtos/Map/MapObjectsStatus.proto";
|
|
|
|
message GetMapObjectsResponse {
|
|
repeated .POGOProtos.Map.MapCell map_cells = 1;
|
|
.POGOProtos.Map.MapObjectsStatus status = 2;
|
|
}
|