11 lines
156 B
C#
Raw Normal View History

using System;
using System.Drawing;
namespace RxMouseService
{
public interface IMouseService
{
IObservable<Point> GetPoints();
}
}