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

10 lines
186 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Inventory;
import "POGOProtos/Enums/PokemonFamilyId.proto";
message Candy {
.POGOProtos.Enums.PokemonFamilyId family_id = 1;
int32 candy = 2;
}