mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
18 lines
374 B
C#
18 lines
374 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Test;
|
|
|
|
public class PacketThemeWantedRefreshTicketRsp : BasePacket
|
|
{
|
|
public PacketThemeWantedRefreshTicketRsp() : base(CmdIds.ThemeWantedRefreshTicketRsp)
|
|
{
|
|
var proto = new ThemeWantedRefreshTicketRsp
|
|
{
|
|
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|