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

18 lines
301 B
C#

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