Remotely/Desktop.XPlat/Services/CursorIconWatcherLinux.cs
2021-07-29 07:58:06 -07:00

17 lines
417 B
C#

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