mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
24 lines
615 B
Protocol Buffer
24 lines
615 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "lunar-tear/server/gen/proto;proto";
|
|
|
|
import "proto/gacha.proto";
|
|
import "proto/data.proto";
|
|
|
|
package apb.api.gameplay;
|
|
|
|
service GamePlayService {
|
|
rpc CheckBeforeGamePlay (CheckBeforeGamePlayRequest) returns (CheckBeforeGamePlayResponse);
|
|
}
|
|
|
|
message CheckBeforeGamePlayRequest {
|
|
string tr = 1;
|
|
int32 voiceClientSystemLanguageTypeId = 2;
|
|
int32 textClientSystemLanguageTypeId = 3;
|
|
}
|
|
|
|
message CheckBeforeGamePlayResponse {
|
|
bool isExistUnreadPop = 1;
|
|
repeated apb.api.gacha.MenuGachaBadgeInfo menuGachaBadgeInfo = 2;
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
} |