Files
BLHX.Server/BLHX.Server.Game/Handlers/P26.cs
2024-02-20 23:47:02 +07:00

15 lines
333 B
C#

using BLHX.Server.Common.Proto;
using BLHX.Server.Common.Proto.p26;
namespace BLHX.Server.Game.Handlers
{
internal static class P26
{
[PacketHandler(Command.Cs26101)]
static void MiniGameHandler(Connection connection, Packet packet)
{
connection.Send(new Sc26102());
}
}
}