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

8 lines
219 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;
message SetFavoritePokemonMessage {
int64 pokemon_id = 1; // Do not change https://github.com/AeonLucid/POGOProtos/pull/126
bool is_favorite = 2;
}