新增角色相关信息
This commit is contained in:
19
Config/NetworkProtocol/Outer/OuterCommon.proto
Normal file
19
Config/NetworkProtocol/Outer/OuterCommon.proto
Normal file
@@ -0,0 +1,19 @@
|
||||
syntax = "proto3";
|
||||
package Fantasy.Network.Message;
|
||||
|
||||
/// GameAccount实体类
|
||||
message RoleBaseInfo
|
||||
{
|
||||
string NickName = 1;//昵称
|
||||
string Head = 2;//头像
|
||||
string Country = 3;//国家
|
||||
int32 Level = 4;//等级
|
||||
int32 Exp = 5;//当前等级
|
||||
}
|
||||
|
||||
///角色信息
|
||||
message RoleInfo
|
||||
{
|
||||
RoleBaseInfo BaseInfo = 1;
|
||||
int64 RoleId = 2; //账号id
|
||||
}
|
||||
Reference in New Issue
Block a user