mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 03:04:47 -05:00
17 lines
473 B
Protocol Buffer
Vendored
17 lines
473 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PokemonData.proto";
|
|
import "POGOProtos/Data/Capture/CaptureAward.proto";
|
|
|
|
message EncounterTutorialCompleteResponse {
|
|
.POGOProtos.Networking.Responses.EncounterTutorialCompleteResponse.Result result = 1;
|
|
.POGOProtos.Data.PokemonData pokemon_data = 2;
|
|
.POGOProtos.Data.Capture.CaptureAward capture_award = 3;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_INVALID_POKEMON = 2;
|
|
}
|
|
} |