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:
parent
58da62baaa
commit
f5e3c38887
@ -1,4 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Raylib_cs
|
namespace Raylib_cs
|
||||||
@ -39,7 +40,8 @@ namespace Raylib_cs
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static unsafe class Logging
|
public static unsafe class Logging
|
||||||
{
|
{
|
||||||
static Logging()
|
[ModuleInitializer]
|
||||||
|
internal static void SetDefaultCallback()
|
||||||
{
|
{
|
||||||
Raylib.SetTraceLogCallback(&LogConsole);
|
Raylib.SetTraceLogCallback(&LogConsole);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user