mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
15 lines
240 B
C#
15 lines
240 B
C#
using System.Drawing;
|
|
using Windows.Win32.Foundation;
|
|
|
|
namespace Vision.WindowCapture;
|
|
|
|
public interface IWindowCapture
|
|
{
|
|
bool IsCapturing { get; }
|
|
|
|
Task StartAsync(HWND hWnd);
|
|
|
|
Bitmap? Capture();
|
|
|
|
Task StopAsync();
|
|
} |