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