mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-18 15:37:21 -05:00
17 lines
299 B
Protocol Buffer
Vendored
17 lines
299 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Player;
|
|
|
|
import "POGOProtos/Enums/Gender.proto";
|
|
|
|
message PlayerAvatar {
|
|
int32 skin = 2;
|
|
int32 hair = 3;
|
|
int32 shirt = 4;
|
|
int32 pants = 5;
|
|
int32 hat = 6;
|
|
int32 shoes = 7;
|
|
.POGOProtos.Enums.Gender gender = 8;
|
|
int32 eyes = 9;
|
|
int32 backpack = 10;
|
|
}
|