整理代码1

This commit is contained in:
2026-02-04 17:50:50 +08:00
parent d02fb85b1c
commit eb26a500bb
45 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#define UNITY
namespace UniLua.Tools
{
// thanks to dharco
// refer to https://github.com/dharco/UniLua/commit/2854ddf2500ab2f943f01a6d3c9af767c092ce75
public class ULDebug
{
public static System.Action<object> Log = NoAction;
public static System.Action<object> LogError = NoAction;
private static void NoAction(object msg) { }
static ULDebug()
{
}
}
}