Option Strict On
Option Explicit On

Namespace Nexamas.UI.Motion

    ''' <summary>
    ''' Small deterministic timing helper used by MASMotionSystem timelines. It intentionally does not schedule frames or own timers.
    ''' </summary>
    Friend NotInheritable Class MASMotionClock

        Private Sub New()
        End Sub

        Friend Shared Function NormalizeDeltaMs(deltaMs As Integer) As Integer
            Return Nexamas.UI.Timing.MASVisualClock.NormalizeFrameDeltaMs(deltaMs)
        End Function

    End Class

End Namespace
