Option Strict On
Option Explicit On

Imports Nexamas.UI.Motion
Imports SkiaSharp

Namespace Nexamas.UI.Components

    Friend Interface ITopBarHostActions
        Sub BeginDrag(screenPt As SKPoint)
        Sub DragTo(screenPt As SKPoint)
        Sub EndDrag()
    End Interface

    Friend Interface ITopBarInvalidator
        Sub Invalidate()
    End Interface

    Friend Interface ITopBarMotionFrameClockProvider
        Function TryGetMotionFrameClock() As MASMotionFrameClock
    End Interface

End Namespace