GC-Proto/proto/GetGameplayRecommendationRsp.proto
2023-04-11 11:14:48 +08:00

21 lines
627 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "GameplayRecommendationElementReliquaryResponse.proto";
import "GameplayRecommendationReliquaryResponse.proto";
import "GameplayRecommendationSkillResponse.proto";
// CmdId: 102
// Name: DLPNPDBPINP
message GetGameplayRecommendationRsp {
int32 retcode = 8;
uint32 avatar_id = 11;
oneof detail {
GameplayRecommendationSkillResponse skill_response = 645;
GameplayRecommendationReliquaryResponse reliquary_response = 1180;
GameplayRecommendationElementReliquaryResponse element_reliquary_response = 1053;
}
}