mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-04 11:15:18 +08:00
15 lines
287 B
C#
15 lines
287 B
C#
using OpenCvSharp;
|
|
|
|
namespace Fischless.GameCapture;
|
|
|
|
public interface IGameCapture : IDisposable
|
|
{
|
|
public bool IsCapturing { get; }
|
|
|
|
public void Start(nint hWnd, Dictionary<string, object>? settings = null);
|
|
|
|
public CaptureImageRes? Capture();
|
|
|
|
public void Stop();
|
|
}
|