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

19 lines
453 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Inventory/AppliedItems.proto";
message UseItemXpBoostResponse {
.POGOProtos.Networking.Responses.UseItemXpBoostResponse.Result result = 1;
.POGOProtos.Inventory.AppliedItems applied_items = 2;
enum Result {
UNSET = 0;
SUCCESS = 1;
ERROR_INVALID_ITEM_TYPE = 2;
ERROR_XP_BOOST_ALREADY_ACTIVE = 3;
ERROR_NO_ITEMS_REMAINING = 4;
ERROR_LOCATION_UNSET = 5;
}
}