Remotely/Desktop.Linux/Services/CursorIconWatcherLinux.cs
2021-07-29 07:56:44 -07:00

17 lines
428 B
C#

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