mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-18 15:37:21 -05:00
17 lines
340 B
Protocol Buffer
Vendored
17 lines
340 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PlayerData.proto";
|
|
|
|
message SetAvatarResponse {
|
|
.POGOProtos.Networking.Responses.SetAvatarResponse.Status status = 1;
|
|
.POGOProtos.Data.PlayerData player_data = 2;
|
|
|
|
enum Status {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
AVATAR_ALREADY_SET = 2;
|
|
FAILURE = 3;
|
|
}
|
|
}
|