GC-Proto/proto/GetGameplayRecommendationRsp.proto

21 lines
626 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "GameplayRecommendationElementReliquaryResponse.proto";
import "GameplayRecommendationReliquaryResponse.proto";
import "GameplayRecommendationSkillResponse.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: OPIKDPBOILF
// CmdId: 135
2023-02-18 04:48:44 +03:00
message GetGameplayRecommendationRsp {
2023-02-28 04:12:44 +03:00
int32 retcode = 8;
uint32 avatar_id = 1;
oneof detail {
GameplayRecommendationSkillResponse skill_response = 824;
GameplayRecommendationReliquaryResponse reliquary_response = 1103;
GameplayRecommendationElementReliquaryResponse element_reliquary_response = 1186;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00