Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/Friend/PacketSyncAddBlacklistScNotify.cs
2025-05-18 21:20:46 +08:00

18 lines
430 B
C#

using EggLink.DanhengServer.Kcp;
using EggLink.DanhengServer.Proto;
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Friend;
public class PacketSyncAddBlacklistScNotify : BasePacket
{
public PacketSyncAddBlacklistScNotify(int uid)
: base(CmdIds.SyncAddBlacklistScNotify)
{
var proto = new SyncAddBlacklistScNotify
{
Uid = (uint)uid
};
SetData(proto);
}
}