This repository has been archived by the owner on Dec 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
|
||
� | ||
� | ||
|
||
user.protouser" | ||
RoleInitRequest | ||
name ( " | ||
RoleInitResonpse"! | ||
RoleRenameRequest | ||
name ( " | ||
RoleRenameResponse" | ||
user.protouser" | ||
UserInfoRequest"g | ||
UserInfoResponse | ||
uid ( | ||
name ( | ||
level ( | ||
exp ( | ||
rtime ( | ||
ltime ( | ||
uid ( | ||
name ( | ||
level ( | ||
exp ( | ||
rtime ( | ||
ltime ("! | ||
RoleRenameRequest | ||
name ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,19 @@ | ||
package user; | ||
|
||
// 角色初始化 | ||
message RoleInitRequest { | ||
required string name = 1; | ||
message UserInfoRequest { | ||
|
||
} | ||
|
||
message RoleInitResonpse { | ||
|
||
message UserInfoResponse { | ||
optional int32 uid = 1; | ||
optional string name = 2; | ||
optional int32 level = 3; | ||
optional int32 exp = 4; | ||
optional int32 rtime = 5; | ||
optional int32 ltime = 6; | ||
} | ||
|
||
// 角色改名 | ||
message RoleRenameRequest { | ||
required string name = 1; | ||
} | ||
|
||
message RoleRenameResponse { | ||
|
||
} | ||
|
||
message UserInfoRequest { | ||
|
||
} | ||
|
||
message UserInfoResponse { | ||
required int32 uid = 1; | ||
required string name = 2; | ||
required int32 level = 3; | ||
required int32 exp = 4; | ||
required int32 rtime = 5; | ||
required int32 ltime = 6; | ||
} |