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

13 lines
320 B
Protocol Buffer

syntax = "proto3";
package POGOProtos.Inventory;
import "POGOProtos/Inventory/Item/ItemId.proto";
import "POGOProtos/Inventory/Item/ItemType.proto";
message AppliedItem {
.POGOProtos.Inventory.Item.ItemId item_id = 1;
.POGOProtos.Inventory.Item.ItemType item_type = 2;
int64 expire_ms = 3;
int64 applied_ms = 4;
}