mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-21 00:47:20 -05:00
14 lines
256 B
Protocol Buffer
Vendored
14 lines
256 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message CollectDailyBonusResponse {
|
|
.POGOProtos.Networking.Responses.CollectDailyBonusResponse.Result result = 1;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
FAILURE = 2;
|
|
TOO_SOON = 3;
|
|
}
|
|
}
|