mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-21 08:57:22 -05:00
12 lines
326 B
Protocol Buffer
Vendored
12 lines
326 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Capture;
|
|
|
|
import "POGOProtos/Enums/ActivityType.proto";
|
|
|
|
message CaptureAward {
|
|
repeated .POGOProtos.Enums.ActivityType activity_type = 1 [packed=true];
|
|
repeated int32 xp = 2 [packed=true];
|
|
repeated int32 candy = 3 [packed=true];
|
|
repeated int32 stardust = 4 [packed=true];
|
|
}
|