mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-03 11:05:16 +08:00
15 lines
230 B
C#
15 lines
230 B
C#
using System.Drawing;
|
|
using Windows.Win32.Foundation;
|
|
|
|
namespace Vision.WindowCapture;
|
|
|
|
public interface IWindowCapture
|
|
{
|
|
bool IsCapturing { get; }
|
|
|
|
void Start(HWND hWnd);
|
|
|
|
Bitmap? Capture();
|
|
|
|
void Stop();
|
|
} |