Files
better-genshin-impact/Vision.WindowCapture/IWindowCapture.cs
Lightczx 3e177e4250 refactor
2023-09-25 15:18:05 +08:00

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();
}