This commit is contained in:
2026-05-27 00:05:32 +08:00
parent 33128ea686
commit e53f400530
12 changed files with 464 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
using System;
public interface IVideoRecorder
{
bool IsRecording { get; }
Action OnStartedRecordingVideo { get; set; }
Action<string> OnStoppedRecordingVideoAction { get; set; }
void StartRecording();
void StopRecording();
}