mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
18 lines
353 B
C#
18 lines
353 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Product;
|
|
|
|
public class PacketGetCardProductInfoRsp : BasePacket
|
|
{
|
|
public PacketGetCardProductInfoRsp() : base(CmdIds.GetCardProductInfoRsp)
|
|
{
|
|
var proto = new GetCardProductInfoRsp
|
|
{
|
|
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|