mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 23:07:41 -05:00
11 lines
256 B
Protocol Buffer
Vendored
11 lines
256 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Settings.Master;
|
|
|
|
message EncounterSettings {
|
|
float spin_bonus_threshold = 1;
|
|
float excellent_throw_threshold = 2;
|
|
float great_throw_threshold = 3;
|
|
float nice_throw_threshold = 4;
|
|
int32 milestone_threshold = 5;
|
|
}
|