mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 06:14:35 +01:00
19 lines
450 B
C#
19 lines
450 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Client;
|
|
|
|
public class PacketGetClientSettingRsp : BasePacket
|
|
{
|
|
public PacketGetClientSettingRsp(uint ClientSettingType) : base(CmdIds.GetClientSettingRsp)
|
|
{
|
|
var proto = new GetClientSettingRsp
|
|
{
|
|
ClientSettingType = ClientSettingType,
|
|
IsWeeklyGuideSwitchOn = true,
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|