BililiveRecorder/BililiveRecorder.Core/DanmakuEvents.cs

23 lines
549 B
C#
Raw Normal View History

2018-03-13 14:54:15 +08:00
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;
}
}