Remotely/ScreenCast.Core/Interfaces/ICursorIconWatcher.cs

16 lines
293 B
C#

using Remotely.Shared.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.ScreenCast.Core.Interfaces
{
public interface ICursorIconWatcher
{
event EventHandler<CursorInfo> OnChange;
CursorInfo GetCurrentCursor();
}
}