fix: refine editor console logging
This commit is contained in:
@@ -6,13 +6,13 @@ namespace XCEngine
|
||||
internal static class InternalCalls
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal static extern void Debug_Log(string message);
|
||||
internal static extern void Debug_Log(string message, string file, int line, string member);
|
||||
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal static extern void Debug_LogWarning(string message);
|
||||
internal static extern void Debug_LogWarning(string message, string file, int line, string member);
|
||||
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal static extern void Debug_LogError(string message);
|
||||
internal static extern void Debug_LogError(string message, string file, int line, string member);
|
||||
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal static extern float Time_GetDeltaTime();
|
||||
|
||||
Reference in New Issue
Block a user