mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
16 lines
445 B
C#
16 lines
445 B
C#
using Immense.RemoteControl.Desktop.Shared.Abstractions;
|
|
using Immense.RemoteControl.Shared.Models;
|
|
using System.Drawing;
|
|
|
|
namespace Immense.RemoteControl.Desktop.Linux.Services;
|
|
|
|
public class CursorIconWatcherLinux : ICursorIconWatcher
|
|
{
|
|
#pragma warning disable CS0067
|
|
public event EventHandler<CursorInfo>? OnChange;
|
|
#pragma warning restore
|
|
|
|
|
|
public CursorInfo GetCurrentCursor() => new(Array.Empty<byte>(), Point.Empty, "default");
|
|
}
|