mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
17 lines
358 B
C#
17 lines
358 B
C#
using BLHX.Server.Common.Proto.p16;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
internal static class P16
|
|
{
|
|
}
|
|
|
|
static class P16ConnectionNotifyExtensions
|
|
{
|
|
public static void NotifyShopMonthData(this Connection connection)
|
|
{
|
|
connection.Send(new Sc16200() { Month = (uint)DateTime.Now.Month });
|
|
}
|
|
}
|
|
}
|