mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-21 08:57:22 -05:00
10 lines
225 B
Protocol Buffer
Vendored
10 lines
225 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message RecycleInventoryItemMessage {
|
|
.POGOProtos.Inventory.Item.ItemId item_id = 1;
|
|
int32 count = 2;
|
|
}
|