Files
DanhengServer-OpenSource/Common/Util/PluginEventCommon.cs
2024-08-01 11:51:56 +08:00

21 lines
386 B
C#

namespace EggLink.DanhengServer.Util;
public static class PluginEventCommon
{
#region Common
public delegate void OnConsoleLogHandler(string message);
#endregion
#region Event
public static event OnConsoleLogHandler? OnConsoleLog;
#endregion
public static void InvokeOnConsoleLog(string message)
{
OnConsoleLog?.Invoke(message);
}
}