mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-18 23:47:20 -05:00
13 lines
267 B
Protocol Buffer
Vendored
13 lines
267 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message UseItemCaptureResponse {
|
|
bool success = 1;
|
|
double item_capture_mult = 2;
|
|
double item_flee_mult = 3;
|
|
bool stop_movement = 4;
|
|
bool stop_attack = 5;
|
|
bool target_max = 6;
|
|
bool target_slow = 7;
|
|
}
|