mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 11:14:48 -05:00
10 lines
211 B
Protocol Buffer
10 lines
211 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PlayerData.proto";
|
|
|
|
message MarkTutorialCompleteResponse {
|
|
bool success = 1;
|
|
.POGOProtos.Data.PlayerData player_data = 2;
|
|
}
|