Files
linux-packaging-mono/external/rx/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseService/MouseService.cs

11 lines
156 B
C#
Raw Normal View History

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