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