mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-22 01:17:21 -05:00
10 lines
186 B
Protocol Buffer
Vendored
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;
|
|
}
|