~ruther/NosSmooth.Local

ref: 69c46f6f0b73dd4475ee75d44f8783c9a45c262e NosSmooth.Local/src/Extensions/NosSmooth.Extensions.SharedBinding/Hooks/Specific/PacketSendHook.cs -rw-r--r-- 892 bytes
69c46f6f — Rutherther feat(shared): add sharing of NosSmooth hooks 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  PacketSendHook.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.LocalBinding.EventArgs;
using NosSmooth.LocalBinding.Hooks;

namespace NosSmooth.Extensions.SharedBinding.Hooks.Specific;

/// <inheritdoc />
internal class PacketSendHook : SingleHook<IPacketSendHook.PacketSendDelegate,
    IPacketSendHook.PacketSendWrapperDelegate, PacketEventArgs>, IPacketSendHook
{
    /// <summary>
    /// Initializes a new instance of the <see cref="PacketSendHook"/> class.
    /// </summary>
    /// <param name="underlyingHook">The underlying hook.</param>
    public PacketSendHook(INostaleHook<IPacketSendHook.PacketSendDelegate, IPacketSendHook.PacketSendWrapperDelegate, PacketEventArgs> underlyingHook)
        : base(underlyingHook)
    {
    }
}
Do not follow this link