|
|
@@ -3,6 +3,7 @@ package protos;
|
|
|
|
|
|
import "structs.proto";
|
|
|
|
|
|
+/// 逻辑服务器之外(大厅,对应进程 tajmahal )的到客户端的协议
|
|
|
|
|
|
/// 心跳
|
|
|
message C_Heartbeat {
|
|
|
@@ -27,9 +28,11 @@ message S_Login {
|
|
|
int32 email = 5;
|
|
|
int64 birthday = 6;
|
|
|
int64 score = 8;
|
|
|
- repeated Item items = 10; // 道具(背包)
|
|
|
- map<string, int64> assets = 12; // 币
|
|
|
+ string curName = 9; // 当前使用称号
|
|
|
+ repeated Item items = 10; // 道具(背包)
|
|
|
+ map<string, int64> assets = 12; // 币,数量
|
|
|
map<int32, string> icons = 13; // 道具图标,一类一个
|
|
|
+ map<string, string> wallets = 14; // 钱包地址
|
|
|
string verServer = 16;
|
|
|
string verClient = 18;
|
|
|
}
|