//
// PacketReceiveHook.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;
///
internal class PacketReceiveHook : SingleHook, IPacketReceiveHook
{
///
/// Initializes a new instance of the class.
///
/// The underlying hook.
public PacketReceiveHook(INostaleHook underlyingHook)
: base(underlyingHook)
{
}
}