mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-02 10:45:22 +08:00
14 lines
251 B
C#
14 lines
251 B
C#
namespace Fischless.GameCapture;
|
|
|
|
public interface IGameCapture : IDisposable
|
|
{
|
|
public CaptureModes Mode { get; }
|
|
public bool IsCapturing { get; }
|
|
|
|
public void Start(nint hWnd);
|
|
|
|
public Bitmap? Capture();
|
|
|
|
public void Stop();
|
|
}
|