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

10 lines
153 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Data;
message DownloadUrlEntry {
string asset_id = 1;
string url = 2;
int32 size = 3;
fixed32 checksum = 4;
}