POGOserver/POGOProtos/Networking/Responses/DownloadSettingsResponse.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
238 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Settings/GlobalSettings.proto";
message DownloadSettingsResponse {
string error = 1;
string hash = 2;
.POGOProtos.Settings.GlobalSettings settings = 3;
}