mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 22:04:36 +01:00
18 lines
407 B
C#
18 lines
407 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Dummy;
|
|
|
|
public class PacketGetScratchTicketRsp : BasePacket
|
|
{
|
|
public PacketGetScratchTicketRsp() : base(CmdIds.GetScratchTicketRsp)
|
|
{
|
|
var proto = new GetScratchTicketRsp
|
|
{
|
|
Retcode = GetScratchTicketRsp.Types.Retcode.ActivityNotOpen,
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|