录屏
This commit is contained in:
10
Assets/Script/Recorder/IVideoRecorder.cs
Normal file
10
Assets/Script/Recorder/IVideoRecorder.cs
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user