Files
BLHX.Server/BLHX.Server.Game/Handlers/P64.cs
2024-02-21 01:25:02 -05:00

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());
}
}
}