feat(scripting): add mono csharp runtime foundation

This commit is contained in:
2026-03-27 13:07:39 +08:00
parent 134a80b334
commit b06932724c
33 changed files with 4227 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
namespace XCEngine
{
public static class Debug
{
public static void Log(string message)
{
InternalCalls.Debug_Log(message ?? string.Empty);
}
public static void LogWarning(string message)
{
InternalCalls.Debug_LogWarning(message ?? string.Empty);
}
public static void LogError(string message)
{
InternalCalls.Debug_LogError(message ?? string.Empty);
}
}
}