123456789101112131415161718192021222324252627282930 |
- namespace BepInEx
- {
-
-
-
- public static class BepInLogger
- {
-
-
-
-
-
- public delegate void EntryLoggedEventHandler(string entry, bool show = false);
-
-
-
- public static event EntryLoggedEventHandler EntryLogged;
-
-
-
-
-
- public static void Log(string entry, bool show = false)
- {
- EntryLogged?.Invoke(entry, show);
- }
- }
- }
|