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