GITLAB
zhangqijia
/
Pro2dProtoBuffers
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
c1d2f5b4a5a92ddd5e310e7915f75c76bf8a0d86
Authored by
zhangqijia
2022-12-12 16:41:36 +0800
1 parent
0c11db8d
fix: 英雄 小阶段
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
hero.proto
models.proto
Inline
Side-by-side
hero.proto
Wrap text
Show/Hide comments
View file @
c1d2f5b
...
...
@@ -21,6 +21,7 @@ message HeroEquipReferRar {
21
21
22
22
message HeroFragmentCovertReq {
23
23
string hero_id = 1;
24
+ int32 frag_count = 2;
24
25
}
25
26
26
27
message HeroFragmentCovertRsp {
...
...
models.proto
Wrap text
Show/Hide comments
View file @
c1d2f5b
...
...
@@ -25,7 +25,8 @@ message Hero {
25
25
int32 exp = 7;
26
26
map<int32,int32> skills = 8;
27
27
map<string,int32> equipments = 9;
28
- int32 star = 10;
28
+ int32 advance_main = 10;
29
+ int32 advance_stage = 11;
29
30
}
30
31
31
32
message Equipment {
...
...