mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 03:04:47 -05:00
11 lines
278 B
Protocol Buffer
Vendored
11 lines
278 B
Protocol Buffer
Vendored
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;
|
|
}
|