mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 14:57:08 -05:00
11 lines
263 B
Protocol Buffer
Vendored
11 lines
263 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Enums/BadgeType.proto";
|
|
|
|
message CheckAwardedBadgesResponse {
|
|
bool success = 1;
|
|
repeated .POGOProtos.Enums.BadgeType awarded_badges = 2;
|
|
repeated int32 awarded_badge_levels = 3;
|
|
}
|