11 lines
156 B
C#
11 lines
156 B
C#
|
using System;
|
|||
|
using System.Drawing;
|
|||
|
|
|||
|
namespace RxMouseService
|
|||
|
{
|
|||
|
public interface IMouseService
|
|||
|
{
|
|||
|
IObservable<Point> GetPoints();
|
|||
|
}
|
|||
|
}
|