// // PeriodicHook.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.Hooks; namespace NosSmooth.Extensions.SharedBinding.Hooks.Specific; /// /// A hook of a periodic function, /// preferably called every frame. /// internal class PeriodicHook : SingleHook, IPeriodicHook { /// /// Initializes a new instance of the class. /// /// The underlying hook. public PeriodicHook(INostaleHook underlyingHook) : base(underlyingHook) { } }