mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-09 04:19:47 +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();
|
|
}
|