mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
17 lines
428 B
C#
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");
|
|
}
|
|
}
|