mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-25 10:05:49 +08:00
16 lines
313 B
C#
16 lines
313 B
C#
using OpenCvSharp;
|
|
|
|
namespace Fischless.GameCapture;
|
|
|
|
public interface IGameCapture : IDisposable
|
|
{
|
|
public CaptureModes Mode { get; }
|
|
public bool IsCapturing { get; }
|
|
|
|
public void Start(nint hWnd, Dictionary<string, object>? settings = null);
|
|
|
|
public Mat? Capture();
|
|
|
|
public void Stop();
|
|
}
|