Files
Fishing2Server/Config/NetworkProtocol/Outer/OuterCommon.proto
2025-07-28 23:45:46 +08:00

19 lines
358 B
Protocol Buffer

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
}