2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Test module initializer instead of static constructor

This commit is contained in:
ChrisDill 2022-02-15 08:55:01 +00:00
parent 58da62baaa
commit f5e3c38887

View File

@ -1,4 +1,5 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Raylib_cs
@ -39,7 +40,8 @@ namespace Raylib_cs
/// </summary>
public static unsafe class Logging
{
static Logging()
[ModuleInitializer]
internal static void SetDefaultCallback()
{
Raylib.SetTraceLogCallback(&LogConsole);
}