mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
23 lines
498 B
C#
23 lines
498 B
C#
using BLHX.Server.Common.Proto.p19;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
internal static class P19
|
|
{
|
|
}
|
|
|
|
static class P19ConnectionNotifyExtensions
|
|
{
|
|
public static void NotifyDormData(this Connection connection)
|
|
{
|
|
connection.Send(new Sc19001()
|
|
{
|
|
Lv = 1,
|
|
FloorNum = 1,
|
|
ExpPos = 2,
|
|
LoadTime = (uint)DateTimeOffset.Now.ToUnixTimeSeconds()
|
|
});
|
|
}
|
|
}
|
|
}
|