14 lines
No EOL
467 B
C#
14 lines
No EOL
467 B
C#
using System.Threading.Tasks;
|
|
using WingsEmu.Game.Families.Event;
|
|
using WingsEmu.Game.Networking;
|
|
using WingsEmu.Packets.ClientPackets;
|
|
|
|
namespace WingsEmu.Plugins.PacketHandling.Game.Useless;
|
|
|
|
public class FStashEndPacketHandler : GenericGamePacketHandlerBase<FStashEndPacket>
|
|
{
|
|
protected override async Task HandlePacketAsync(IClientSession session, FStashEndPacket packet)
|
|
{
|
|
await session.EmitEventAsync(new FamilyWarehouseCloseEvent());
|
|
}
|
|
} |