// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Graphics.Transforms { /// /// An interface for an easing function that is applied to s. /// public interface IEasingFunction { /// /// Applies the easing function to a time value. /// /// The time value to apply the easing to. /// The eased time value. double ApplyEasing(double time); } }