mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
19 lines
369 B
C#
19 lines
369 B
C#
using BLHX.Server.Common.Proto.p33;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
internal class P33
|
|
{
|
|
}
|
|
static class P33ConnectionNotifyExtensions
|
|
{
|
|
public static void NotifyWorldData(this Connection connection)
|
|
{
|
|
connection.Send(new Sc33114()
|
|
{
|
|
IsWorldOpen = 1
|
|
});
|
|
}
|
|
}
|
|
}
|