mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 12:46:03 +08:00
20 lines
551 B
C#
20 lines
551 B
C#
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Recommend;
|
|
|
|
public class PacketGetBigDataRecommendScRsp : BasePacket
|
|
{
|
|
public PacketGetBigDataRecommendScRsp(uint avatarId, BigDataRecommendType type)
|
|
: base(CmdIds.GetBigDataRecommendScRsp)
|
|
{
|
|
var proto = new GetBigDataRecommendScRsp
|
|
{
|
|
HasRecommand = true,
|
|
EquipAvatar = avatarId,
|
|
BigDataRecommendType = type
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |