mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
11 lines
341 B
C#
11 lines
341 B
C#
using EggLink.DanhengServer.Kcp;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Friend;
|
|
|
|
public class PacketGetFriendListInfoScRsp : BasePacket
|
|
{
|
|
public PacketGetFriendListInfoScRsp(Connection connection) : base(CmdIds.GetFriendListInfoScRsp)
|
|
{
|
|
SetData(connection.Player!.FriendManager!.ToProto());
|
|
}
|
|
} |