mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
18 lines
301 B
C#
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);
|
|
}
|
|
}
|