mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
498 B
C#
18 lines
498 B
C#
using EggLink.DanhengServer.GameServer.Game.Rogue;
|
|
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Rogue;
|
|
|
|
public class PacketGetRogueTalentInfoScRsp : BasePacket
|
|
{
|
|
public PacketGetRogueTalentInfoScRsp() : base(CmdIds.GetRogueTalentInfoScRsp)
|
|
{
|
|
var proto = new GetRogueTalentInfoScRsp
|
|
{
|
|
TalentInfoList = RogueManager.ToTalentProto()
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |