mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
15 lines
234 B
C#
15 lines
234 B
C#
using System.Drawing;
|
|
|
|
namespace Vision.WindowCapture
|
|
{
|
|
public interface IWindowCapture
|
|
{
|
|
bool IsCapturing { get; }
|
|
|
|
void Start(IntPtr hWnd);
|
|
|
|
Bitmap? Capture();
|
|
|
|
void Stop();
|
|
}
|
|
} |