mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-05-03 03:15:50 -05:00
9 lines
185 B
Protocol Buffer
9 lines
185 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
import "POGOProtos/Enums/TeamColor.proto";
|
|
|
|
message SetPlayerTeamMessage {
|
|
.POGOProtos.Enums.TeamColor team = 1;
|
|
}
|