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

18 lines
396 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Inventory/AppliedItem.proto";
message UseIncenseResponse {
.POGOProtos.Networking.Responses.UseIncenseResponse.Result result = 1;
.POGOProtos.Inventory.AppliedItem applied_incense = 2;
enum Result {
UNKNOWN = 0;
SUCCESS = 1;
INCENSE_ALREADY_ACTIVE = 2;
NONE_IN_INVENTORY = 3;
LOCATION_UNSET = 4;
}
}