Merge branch 'master_test' into master_test_gn

master_huanxiang
lvxinran 2021-04-15 10:05:44 +08:00
commit 3138e6de79
1 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,7 @@ import "CommonProto.proto";
optional int64 heroHp = 4;//
optional int32 level = 5;//
optional int32 skinId = 6;//
optional int32 position = 7;//
}
message DifficultMapOption {
//Id
@ -309,8 +310,12 @@ import "CommonProto.proto";
optional int32 worldLevel = 2;
}
message TrialSaveHero{
optional string heroId = 1;
optional int32 position =2;
}
message TrialHeroInfoSaveRequest{
repeated string heroIds = 1;//
repeated TrialSaveHero heroes = 1;//
}
message TrialHeroInfoSaveResponse{
repeated TrialHeroInfo heroes = 1;