mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-13 15:04:37 +01:00
13 lines
277 B
C#
13 lines
277 B
C#
using BLHX.Server.Common.Proto.p64;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
static class P64ConnectionNotifyExtensions
|
|
{
|
|
public static void NotifyTechSetLists(this Connection connection)
|
|
{
|
|
connection.Send(new Sc64000());
|
|
}
|
|
}
|
|
}
|