BililiveRecorder/BililiveRecorder.Core/IBasicDanmakuWriter.cs

12 lines
259 B
C#
Raw Normal View History

2020-12-15 18:53:52 +08:00
using System;
2020-11-23 17:35:42 +08:00
namespace BililiveRecorder.Core
{
public interface IBasicDanmakuWriter : IDisposable
{
void Disable();
2020-12-15 18:53:52 +08:00
void EnableWithPath(string path, IRecordedRoom recordedRoom);
2020-11-23 17:35:42 +08:00
void Write(DanmakuModel danmakuModel);
}
}