Files
KianaBH3/GameServer/Server/Packet/Send/Client/PacketSetClientDataRsp.cs
2025-06-14 11:15:32 +08:00

19 lines
396 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Client;
public class PacketSetClientDataRsp : BasePacket
{
public PacketSetClientDataRsp(uint Id, ClientDataType Type) : base(CmdIds.SetClientDataRsp)
{
var proto = new SetClientDataRsp
{
Id = Id,
Type = Type
};
SetData(proto);
}
}