POGOserver/POGOProtos/Networking/Responses/GetMapObjectsResponse.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

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;
}