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

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