This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
BetterRaid_OLD/Events/ChannelDataChangedEventArgs.cs

16 lines
383 B
C#

using System;
namespace BetterRaid.Events;
public class ChannelDataChangedEventArgs : EventArgs
{
public static ChannelDataChangedEventArgs FromViewerCount(int old, int now)
{
return new ChannelDataChangedEventArgs();
}
public static ChannelDataChangedEventArgs FromIsLive(bool old, bool now)
{
return new ChannelDataChangedEventArgs();
}
}