|
|
@@ -1,7 +1,7 @@
|
|
|
syntax="proto3";
|
|
|
package protos;
|
|
|
|
|
|
-import "structs.proto";
|
|
|
+//import "structs.proto";
|
|
|
import "enums.proto";
|
|
|
|
|
|
/// 逻辑服务器之外(大厅,对应进程 tajmahal )的到客户端的协议
|
|
|
@@ -39,8 +39,7 @@ message S_Login {
|
|
|
int64 birthday = 6;
|
|
|
int32 gender = 7;
|
|
|
int64 score = 8;
|
|
|
- string curName = 9; // 当前使用称号
|
|
|
- repeated Item items = 10; // 道具(背包)
|
|
|
+ string curTitle = 9; // 当前使用称号
|
|
|
map<string, int64> balances = 12; // 币,数量
|
|
|
map<string, string> wallets = 14; // 钱包地址
|
|
|
string verServer = 16;
|
|
|
@@ -50,6 +49,32 @@ message S_Login {
|
|
|
int32 volFg = 22; // 前景音量
|
|
|
}
|
|
|
|
|
|
+// 背包
|
|
|
+message C_UserPack {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+message S_UserPack {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+// 用户称号
|
|
|
+message C_UserTitles {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+message S_UserTitles {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+// 身上装饰(武器)
|
|
|
+message C_UserAccessories {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+message S_UserAccessories {
|
|
|
+
|
|
|
+}
|
|
|
|
|
|
/// 登出逻辑服务器
|
|
|
message C_Logout {
|