|
@@ -174,8 +174,7 @@ message M2C_Reload // IResponse
|
|
|
message C2R_Login // IRequest
|
|
|
{
|
|
|
int32 RpcId = 1;
|
|
|
- string Account = 2; // 帐号
|
|
|
- string Password = 3; // 密码
|
|
|
+ string RoomId = 2;
|
|
|
}
|
|
|
|
|
|
message R2C_Login // IResponse
|
|
@@ -184,17 +183,15 @@ message R2C_Login // IResponse
|
|
|
int32 Error = 2;
|
|
|
string Message = 3;
|
|
|
string Token = 4;
|
|
|
- int64 UserId = 5;
|
|
|
// 服务器列表
|
|
|
- repeated string Address = 6;
|
|
|
+ repeated string Address = 5;
|
|
|
}
|
|
|
|
|
|
//ResponseType G2C_LoginGame
|
|
|
message C2G_LoginGame // IRequest
|
|
|
{
|
|
|
int32 RpcId = 1;
|
|
|
- string Token = 2; // 帐号
|
|
|
- int64 UserId = 3;
|
|
|
+ string Token = 2;
|
|
|
}
|
|
|
|
|
|
message G2C_LoginGame // IResponse
|
|
@@ -202,7 +199,7 @@ message G2C_LoginGame // IResponse
|
|
|
int32 RpcId = 1;
|
|
|
int32 Error = 2;
|
|
|
string Message = 3;
|
|
|
- repeated PlayerBasic Players = 4; // 角色列表
|
|
|
+ PlayerBasic Player = 4; // 角色
|
|
|
}
|
|
|
|
|
|
//ResponseType G2C_CreatePlayer
|
|
@@ -228,7 +225,6 @@ message C2G_BindPlayer // IRequest
|
|
|
{
|
|
|
int32 RpcId = 1;
|
|
|
int64 PlayerId = 2;
|
|
|
- int64 UserId = 3;
|
|
|
}
|
|
|
|
|
|
message G2C_BindPlayer // IResponse
|