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

11 lines
210 B
Protocol Buffer

syntax = "proto3";
package POGOProtos.Inventory.Item;
import "POGOProtos/Inventory/Item/ItemId.proto";
message ItemData {
.POGOProtos.Inventory.Item.ItemId item_id = 1;
int32 count = 2;
bool unseen = 3;
}