POGOserver/POGOProtos/Networking/Requests/Messages/AddFortModifierMessage.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

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;
}