diff --git a/Raylib-cs/types/Logging.cs b/Raylib-cs/types/Logging.cs index db0f3fe..2f87f17 100644 --- a/Raylib-cs/types/Logging.cs +++ b/Raylib-cs/types/Logging.cs @@ -1,4 +1,5 @@ using System; +using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Raylib_cs @@ -39,7 +40,8 @@ namespace Raylib_cs /// public static unsafe class Logging { - static Logging() + [ModuleInitializer] + internal static void SetDefaultCallback() { Raylib.SetTraceLogCallback(&LogConsole); }