Skip to content

Commit

Permalink
Added missing MarkTutorialComplete.
Browse files Browse the repository at this point in the history
  • Loading branch information
AeonLucid committed Jul 20, 2016
1 parent 277e090 commit 6481de7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;

import "Enums/TutorialState.proto";

message MarkTutorialCompleteMessage {
repeated .POGOProtos.Enums.TutorialState tutorials_completed = 1;
bool send_marketing_emails = 2;
bool send_push_notifications = 3;
}
9 changes: 9 additions & 0 deletions pogo/Networking/Responses/MarkTutorialCompleteResponse.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
syntax = "proto3";
package POGOProtos.Networking.Responses;

import "Data/PlayerData.proto";

message MarkTutorialCompleteResponse {
bool success = 1;
.POGOProtos.Data.PlayerData player_data = 2;
}

0 comments on commit 6481de7

Please sign in to comment.