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

11 lines
292 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;
import "POGOProtos/Enums/TutorialState.proto";
message MarkTutorialCompleteMessage {
repeated .POGOProtos.Enums.TutorialState tutorials_completed = 1;
bool send_marketing_emails = 2;
bool send_push_notifications = 3;
}