mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
21 lines
626 B
Protocol Buffer
21 lines
626 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GameplayRecommendationElementReliquaryResponse.proto";
|
|
import "GameplayRecommendationReliquaryResponse.proto";
|
|
import "GameplayRecommendationSkillResponse.proto";
|
|
|
|
// Name: OPIKDPBOILF
|
|
// CmdId: 135
|
|
message GetGameplayRecommendationRsp {
|
|
int32 retcode = 8;
|
|
uint32 avatar_id = 1;
|
|
oneof detail {
|
|
GameplayRecommendationSkillResponse skill_response = 824;
|
|
GameplayRecommendationReliquaryResponse reliquary_response = 1103;
|
|
GameplayRecommendationElementReliquaryResponse element_reliquary_response = 1186;
|
|
}
|
|
}
|
|
|