mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-06-02 10:55:48 +08:00
12 lines
203 B
C#
12 lines
203 B
C#
using System;
|
|
|
|
namespace BetterGenshinImpact.Core.Video;
|
|
|
|
public interface IVideoRecorder : IDisposable
|
|
{
|
|
public bool Start();
|
|
|
|
public void Stop();
|
|
|
|
string FileName { get; set; }
|
|
} |