Commit 4e2a305736e61bdfb4cbd1b45292fec1b46d5bb2
1 parent
fb0ae1cb
fix: update
Showing
1 changed file
with
17 additions
and
0 deletions
Show diff stats
hero.proto
... | ... | @@ -95,3 +95,20 @@ message HeroUpGradeReq { |
95 | 95 | string hero_id = 1; |
96 | 96 | } |
97 | 97 | |
98 | +message HeroUpGradeRsp { | |
99 | + string hero_id = 1; | |
100 | + int32 grade = 2; | |
101 | +} | |
102 | + | |
103 | +message HeroUpMemorySlotReq { | |
104 | + string hero_id = 1; | |
105 | + int32 slot_idx = 2; | |
106 | + string costs = 3; | |
107 | +} | |
108 | + | |
109 | +message HeroUpMemorySlotRsp { | |
110 | + string hero_id = 1; | |
111 | + map<int32,string> slot_memory = 2; | |
112 | +} | |
113 | + | |
114 | + | ... | ... |