eqip notifs

This commit is contained in:
rfi
2024-02-23 09:51:01 +07:00
parent bdc8785fe1
commit c560bd8d7b
3 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
using BLHX.Server.Common.Proto.p14;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLHX.Server.Game.Handlers
{
internal class P14
{
}
static class P14ConnectionNotifyExtensions
{
public static void NotifyEquipList(this Connection connection)
{
connection.Send(new Sc14001()
{
SpweaponBagSize = 150
});
}
public static void NotifyEquipSkinList(this Connection connection)
{
connection.Send(new Sc14101());
}
}
}