mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-19 07:57:21 -05:00
10 lines
222 B
Protocol Buffer
Vendored
10 lines
222 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Player;
|
|
|
|
import "POGOProtos/Data/Player/PlayerAvatar.proto";
|
|
|
|
message PlayerPublicProfile {
|
|
string name = 1;
|
|
int32 level = 2;
|
|
.POGOProtos.Data.Player.PlayerAvatar avatar = 3;
|
|
} |