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

12 lines
197 B
Protocol Buffer

syntax = "proto3";
package POGOProtos.Data;
message AssetDigestEntry {
string asset_id = 1;
string bundle_name = 2;
int64 version = 3;
fixed32 checksum = 4;
int32 size = 5;
bytes key = 6;
}