mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
17 lines
345 B
C#
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() });
|
|
}
|
|
}
|
|
}
|