Files
BLHX.Server/BLHX.Server.Game/Handlers/P13.cs
2024-02-21 10:46:58 +07:00

17 lines
345 B
C#

using BLHX.Server.Common.Proto.p13;
namespace BLHX.Server.Game.Handlers
{
internal static class P13
{
}
static class P13ConnectionNotifyExtensions
{
public static void NotifyChapterData(this Connection connection)
{
connection.Send(new Sc13001() { ReactChapter = new() });
}
}
}