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

15 lines
301 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
message UseItemGymResponse {
POGOProtos.Networking.Responses.UseItemGymResponse.Result result = 1;
int64 updated_gp = 2; // Gym Points (?)
enum Result {
UNSET = 0;
SUCCESS = 1;
ERROR_CANNOT_USE = 2;
ERROR_NOT_IN_RANGE = 3;
}
}