更新proto
This commit is contained in:
16
Event/BotEventHandler.cs
Normal file
16
Event/BotEventHandler.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user