mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
18 lines
332 B
C#
18 lines
332 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Friend;
|
|
|
|
public class PacketGetFriendListRsp : BasePacket
|
|
{
|
|
public PacketGetFriendListRsp() : base(CmdIds.GetFriendListRsp)
|
|
{
|
|
var proto = new GetFriendListRsp
|
|
{
|
|
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|