123456789101112131415161718192021222324252627 |
- namespace ET.Server
- {
- /// <summary>
- /// 玩家工具类
- /// </summary>
- public static class PlayerHelper
- {
- /// <summary>
- /// 玩家信息转proto
- /// </summary>
- /// <param name="player"></param>
- /// <returns></returns>
- public static PlayerInfo PlayerToProto(Player player)
- {
- return new PlayerInfo()
- {
- id = player.Id,
- name = player.Name,
- sex = player.Sex,
- exp = player.Exp,
- level = player.Level,
- vip = 0
- };
- }
- }
- }
|