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

syntax = "proto3";
package POGOProtos.Networking.Responses;
message GetHatchedEggsResponse {
bool success = 1;
repeated fixed64 pokemon_id = 2 [packed=true];
repeated int32 experience_awarded = 3;
repeated int32 candy_awarded = 4;
repeated int32 stardust_awarded = 5;
}