Lua 5.2支持

This commit is contained in:
2026-02-03 02:44:58 +08:00
parent c64330b22f
commit 3c21a1ce3a
33 changed files with 14339 additions and 0 deletions

19
UniLua/ULDebug.cs Normal file
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()
{
}
}
}