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
2e695358ebf6b58bb9b60402d9c84abc5b6630e2
Authored by
zhangqijia
2022-11-24 11:22:31 +0800
1 parent
72eaf25c
fix: 爬塔增加最高历史记录
Showing
2 changed files
with
2 additions
and
0 deletions
Show diff stats
game.proto
models.proto
Inline
Side-by-side
game.proto
Wrap text
Show/Hide comments
View file @
2e69535
...
...
@@ -190,6 +190,7 @@ message RoleEndClimbReq {
190
190
191
191
message RoleEndClimbRsp {
192
192
string reward = 1;
193
+ int32 hishigh = 2;
193
194
}
194
195
195
196
message EquipmentDelReq {
...
...
models.proto
Wrap text
Show/Hide comments
View file @
2e69535
...
...
@@ -123,4 +123,5 @@ message Role {
123
123
int64 ctime = 28; // 创建时间
124
124
string channel = 29;
125
125
string climb_reward = 30;
126
+ map<int32,int32> climb_hishigh = 31;
126
127
}
127
128
\ No newline at end of file
...
...