Files
KianaBH3/GameServer/Server/Packet/Send/Player/PacketGetBlackListRsp.cs
2025-06-14 11:15:32 +08:00

18 lines
328 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Player;
public class PacketGetBlackListRsp : BasePacket
{
public PacketGetBlackListRsp() : base(CmdIds.GetBlackListRsp)
{
var proto = new GetBlackListRsp
{
};
SetData(proto);
}
}