mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-22 01:44:11 -05:00
12 lines
288 B
Protocol Buffer
12 lines
288 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message AddFortModifierMessage {
|
|
.POGOProtos.Inventory.Item.ItemId modifier_type = 1;
|
|
string fort_id = 2;
|
|
double player_latitude = 3;
|
|
double player_longitude = 4;
|
|
}
|