GC-Proto/proto/GetGameplayRecommendationRsp.proto
2023-02-28 09:12:44 +08:00

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;
}
}