Remotely/Remotely_ScreenCast/Capture/ICapturer.cs
Jared Goodwin b3f03a8b56 Rebranding
2021-07-29 07:53:42 -07: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; }
}
}