mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
18 lines
427 B
C#
18 lines
427 B
C#
using BLHX.Server.Common.Proto.p63;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
static class P63ConnectionNotifyExtensions
|
|
{
|
|
public static void NotifyTechnologyData(this Connection connection)
|
|
{
|
|
connection.Send(new Sc63000());
|
|
}
|
|
|
|
public static void NotifyBlueprintData(this Connection connection)
|
|
{
|
|
connection.Send(new Sc63100());
|
|
}
|
|
}
|
|
}
|