BililiveRecorder/BililiveRecorder.Core/Danmaku/IBasicDanmakuWriter.cs
2021-02-23 18:03:37 +08:00

13 lines
292 B
C#

using System;
using BililiveRecorder.Core.Api.Danmaku;
namespace BililiveRecorder.Core.Danmaku
{
public interface IBasicDanmakuWriter : IDisposable
{
void Disable();
void EnableWithPath(string path, IRoom room);
void Write(DanmakuModel danmakuModel);
}
}