mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-19 07:57:21 -05:00
14 lines
386 B
Protocol Buffer
Vendored
14 lines
386 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
import "POGOProtos/Data/Battle/BattleAction.proto";
|
|
|
|
message AttackGymMessage {
|
|
string gym_id = 1;
|
|
string battle_id = 2;
|
|
repeated .POGOProtos.Data.Battle.BattleAction attack_actions = 3;
|
|
.POGOProtos.Data.Battle.BattleAction last_retrieved_actions = 4;
|
|
double player_latitude = 5;
|
|
double player_longitude = 6;
|
|
}
|