mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 23:07:41 -05:00
12 lines
328 B
Protocol Buffer
12 lines
328 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Inventory;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
import "POGOProtos/Inventory/InventoryUpgradeType.proto";
|
|
|
|
message InventoryUpgrade {
|
|
.POGOProtos.Inventory.Item.ItemId item_id = 1;
|
|
.POGOProtos.Inventory.InventoryUpgradeType upgrade_type = 2;
|
|
int32 additional_storage = 3;
|
|
}
|