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
43bf509f59c5aa87099fff52e0eeede70b0fe7d4
Authored by
zhangqijia
2022-03-29 11:09:47 +0800
1 parent
5071be16
fix: role更新通知
Showing
2 changed files
with
6 additions
and
0 deletions
Show diff stats
game.proto
protocode.proto
Inline
Side-by-side
game.proto
Wrap text
Show/Hide comments
View file @
43bf509
...
...
@@ -28,4 +28,9 @@ message RoleRsp {
28
28
models.Role role = 2;
29
29
repeated models.Hero hero = 3;
30
30
repeated models.Team team = 4;
31
+}
32
+
33
+message UpdateRolePropertyRsp {
34
+ repeated int32 id = 1;
35
+ models.Role role = 2;
31
36
}
32
37
\ No newline at end of file
...
...
protocode.proto
Wrap text
Show/Hide comments
View file @
43bf509
...
...
@@ -11,5 +11,6 @@ enum ProtoCode
11
11
LoginReq = 3;
12
12
CreateReq = 4;
13
13
RoleRsp = 5;
14
+ UpdateRolePropertyRsp = 6;
14
15
15
16
}
16
17
\ No newline at end of file
...
...