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
a102181c13a87f14aa06dad30dfa4836b26e9f0b
Authored by
zhangqijia
2022-04-20 19:29:49 +0800
1 parent
e64dfe99
fix: id自增做了写更新。阵容变换协议修改
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
game.proto
protocode.proto
Inline
Side-by-side
game.proto
Wrap text
Show/Hide comments
View file @
a102181
...
...
@@ -38,6 +38,6 @@ message UpdateRolePropertyRsp {
38
38
models.Role role = 2;
39
39
}
40
40
41
-message
GoIntoBattle
Req {
41
+message
ChangeTeam
Req {
42
42
repeated models.Team team = 1;
43
43
}
44
44
\ No newline at end of file
...
...
protocode.proto
Wrap text
Show/Hide comments
View file @
a102181
...
...
@@ -13,6 +13,6 @@ enum ProtoCode
13
13
CreateReq = 5;
14
14
RoleRsp = 6;
15
15
UpdateRolePropertyRsp = 7;
16
-
GoIntoBattle
Req = 8;
16
+
ChangeTeam
Req = 8;
17
17
18
18
}
19
19
\ No newline at end of file
...
...