Remotely/Remotely_ScreenCast/Capture/ICapturer.cs
Jared Goodwin b5148dfbd3 Rebranding
2019-02-27 21:21:53 -08:00

21 lines
505 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely_ScreenCast.Capture
{
public interface ICapturer
{
Bitmap CurrentFrame { get; set; }
Rectangle CurrentScreenBounds { get; }
Bitmap PreviousFrame { get; set; }
bool CaptureFullscreen { get; set; }
void Capture();
EventHandler<Rectangle> ScreenChanged { get; set; }
int SelectedScreen { get; set; }
}
}