[+] Proto

[+] Proto
This commit is contained in:
ALEXTANG
2023-05-19 00:03:18 +08:00
parent 4253a81e78
commit 07c459051f
8 changed files with 2402 additions and 9 deletions

View File

@@ -1,19 +1,18 @@
syntax = "proto3";
import public "proto_cs_common.proto";
package GameProto;
// 玩家协议
MsgId CS_CMD_ACT_LOGIN_REQ = 2001; //帐号登录请求
// 角色登录结果请求
message CSActLoginReq
{
uint32 Uin = 1; //帐号Uin
uint32 SvrID = 2; //服务器ID
uint32 AuthTime = 3; //账户认证的时间
uint32 NetworkType = 4, //网络类型
uint32 NetworkType = 4; //网络类型
}
MsgId CS_CMD_ACT_LOGIN_RES = 2002; //帐号登录回包
// 角色登录结果返回
message CSActLoginRes
{