mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-27 08:17:27 -05:00
12 lines
276 B
Protocol Buffer
Vendored
12 lines
276 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message UseItemGymMessage {
|
|
.POGOProtos.Inventory.Item.ItemId item_id = 1;
|
|
string gym_id = 2;
|
|
double player_latitude = 3;
|
|
double player_longitude = 4;
|
|
}
|