mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-18 15:37:21 -05:00
18 lines
396 B
Protocol Buffer
Vendored
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;
|
|
}
|
|
}
|