mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
12 lines
259 B
C#
12 lines
259 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
public interface IBasicDanmakuWriter : IDisposable
|
|
{
|
|
void Disable();
|
|
void EnableWithPath(string path, IRecordedRoom recordedRoom);
|
|
void Write(DanmakuModel danmakuModel);
|
|
}
|
|
}
|