Files
webRtc/Assets/Script/Recorder/IVideoRecorder.cs
2026-05-27 00:05:32 +08:00

10 lines
245 B
C#

using System;
public interface IVideoRecorder
{
bool IsRecording { get; }
Action OnStartedRecordingVideo { get; set; }
Action<string> OnStoppedRecordingVideoAction { get; set; }
void StartRecording();
void StopRecording();
}