mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 11:14:48 -05:00
11 lines
256 B
Protocol Buffer
Vendored
11 lines
256 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message UseItemCaptureMessage {
|
|
.POGOProtos.Inventory.Item.ItemId item_id = 1;
|
|
fixed64 encounter_id = 2;
|
|
string spawn_point_id = 3;
|
|
}
|