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

16 lines
311 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
message ReleasePokemonResponse {
.POGOProtos.Networking.Responses.ReleasePokemonResponse.Result result = 1;
int32 candy_awarded = 2;
enum Result {
UNSET = 0;
SUCCESS = 1;
POKEMON_DEPLOYED = 2;
FAILED = 3;
ERROR_POKEMON_IS_EGG = 4;
}
}