mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-29 10:09:49 +08:00
14 lines
296 B
C#
14 lines
296 B
C#
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 Bitmap? Capture();
|
|
|
|
public void Stop();
|
|
}
|