mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-19 16:51:35 -05:00
8 lines
151 B
Protocol Buffer
Vendored
8 lines
151 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message NicknamePokemonMessage {
|
|
fixed64 pokemon_id = 1;
|
|
string nickname = 2;
|
|
}
|