mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-05-02 19:05:27 -05:00
11 lines
276 B
Protocol Buffer
Vendored
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;
|
|
}
|