mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
19 lines
481 B
C#
19 lines
481 B
C#
using Remotely.Desktop.Core.Interfaces;
|
|
using Remotely.Shared.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
|
|
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");
|
|
}
|
|
}
|