BililiveRecorder/BililiveRecorder.Core/DanmakuEvents.cs
Genteure e54b037576 ~
2018-03-21 20:56:56 +08:00

23 lines
549 B
C#

using System;
namespace BililiveRecorder.Core
{
public delegate void DisconnectEvt(object sender, DisconnectEvtArgs e);
public class DisconnectEvtArgs
{
public Exception Error;
}
public delegate void ReceivedRoomCountEvt(object sender, ReceivedRoomCountArgs e);
public class ReceivedRoomCountArgs
{
public uint UserCount;
}
public delegate void ReceivedDanmakuEvt(object sender, ReceivedDanmakuArgs e);
public class ReceivedDanmakuArgs
{
public DanmakuModel Danmaku;
}
}