From f5e3c38887c54b8b75e10fb6fc8eee17d7c3cc93 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 15 Feb 2022 08:55:01 +0000 Subject: [PATCH] Test module initializer instead of static constructor --- Raylib-cs/types/Logging.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }