This commit is contained in:
CortexCore
2025-01-24 18:11:03 +08:00
parent 4b72602bfa
commit 41715e4413
12 changed files with 545 additions and 1391 deletions

View File

@@ -20,10 +20,10 @@ namespace BITKit
OnNextLine = null;
}
#endif
public static event Action<string> OnLog;
public static event Action<Exception> OnException;
public static event Action<string> OnWarning;
public static event Action OnNextLine;
public static event Action<string> OnLog = Console.WriteLine;
public static event Action<Exception> OnException = Console.WriteLine;
public static event Action<string> OnWarning = Console.WriteLine;
public static event Action OnNextLine=Console.WriteLine;
#if UNITY_5_3_OR_NEWER
[HideInCallstack]
#endif