Files
CMLeonOS/interpreter/UniLua/ULDebug.cs

20 lines
376 B
C#
Raw Permalink Normal View History

2026-02-03 02:44:58 +08:00
#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()
{
}
}
}