mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
24 lines
604 B
C#
24 lines
604 B
C#
using EggLink.DanhengServer.Game.Player;
|
|
using EggLink.DanhengServer.Proto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.Rogue
|
|
{
|
|
public class PacketGetRogueInfoScRsp : BasePacket
|
|
{
|
|
public PacketGetRogueInfoScRsp(PlayerInstance player) : base(CmdIds.GetRogueInfoScRsp)
|
|
{
|
|
var proto = new GetRogueInfoScRsp()
|
|
{
|
|
RogueInfo = player.RogueManager!.ToProto(),
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|
|
}
|