using Avalonia.Input; namespace Artemis.UI.Shared.Providers; /// /// Represents a provider for custom cursors. /// public interface ICursorProvider { /// /// A cursor that indicates a rotating. /// public Cursor Rotate { get; } /// /// A cursor that indicates dragging. /// public Cursor Drag { get; } /// /// A cursor that indicates dragging horizontally. /// public Cursor DragHorizontal { get; } }