BililiveRecorder/BililiveRecorder.Core/Danmaku/IBasicDanmakuWriter.cs

13 lines
292 B
C#
Raw Normal View History

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