More stubs for technology stuff

This commit is contained in:
Kyle Belanger
2024-02-21 01:25:02 -05:00
parent 7d79f3c007
commit f58abb9534
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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());
}
}
}