mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
286 B
C#
12 lines
286 B
C#
using Remotely.Shared.Models;
|
|
|
|
namespace Remotely.Desktop.Shared.Abstractions;
|
|
|
|
public interface ICursorIconWatcher
|
|
{
|
|
[Obsolete("This should be replaced with a message published by IMessenger.")]
|
|
event EventHandler<CursorInfo> OnChange;
|
|
|
|
CursorInfo GetCurrentCursor();
|
|
}
|