Files
Main/Assets/GameAssets/Resources/Lua/Logic/ServerList/ServerCharInfo.lua
2025-01-25 04:38:09 +08:00

31 lines
555 B
Lua

------------------------------------------------
-- 作者: gzg
-- 日期: 2021-02-25
-- 文件: ServerCharInfo.lua
-- 模块: ServerCharInfo
-- 描述: 服务器角色的信息
------------------------------------------------
local ServerCharInfo = {
--角色ID
ID,
--服务器ID
ServerId,
--角色名
Name,
--角色职业
Career,
--角色等级
Level,
--战力值
PowerValue,
}
function ServerCharInfo:New()
local _m = Utils.DeepCopy(self);
return _m;
end
return ServerCharInfo;