16 lines
434 B
C#
16 lines
434 B
C#
using Lagrange.Core.Event;
|
|
using Shrink.Login;
|
|
|
|
namespace Shrink.Event;
|
|
|
|
public class BotEventHandler
|
|
{
|
|
public BotEventHandler()
|
|
{
|
|
Console.WriteLine("Bot EventHandler");
|
|
}
|
|
private static readonly Lazy<BotEventHandler> _instance = new(() => new BotEventHandler());
|
|
public static BotEventHandler Instance => _instance.Value;
|
|
private EventInvoker _invoker = BotService.Instance.Client!.Invoker;
|
|
|
|
} |