mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
19 lines
396 B
C#
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);
|
|
}
|
|
}
|