using Remotely.Desktop.Shared.Abstractions; using Remotely.Shared.Models; using System.Drawing; namespace Remotely.Desktop.Linux.Services; public class CursorIconWatcherLinux : ICursorIconWatcher { #pragma warning disable CS0067 public event EventHandler? OnChange; #pragma warning restore public CursorInfo GetCurrentCursor() => new(Array.Empty(), Point.Empty, "default"); }