mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-13 06:54:51 +01:00
21 lines
536 B
C#
21 lines
536 B
C#
using BLHX.Server.Common.Proto;
|
|
using BLHX.Server.Common.Proto.p50;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
internal static class P50
|
|
{
|
|
[PacketHandler(Command.Cs50014)]
|
|
static void SearchFriendCommandHandler(Connection connection, Packet packet)
|
|
{
|
|
connection.Send(new Sc50015());
|
|
}
|
|
|
|
[PacketHandler(Command.Cs50016)]
|
|
static void GetBlacklistHandler(Connection connection, Packet packet)
|
|
{
|
|
connection.Send(new Sc50017());
|
|
}
|
|
}
|
|
}
|