Essgee.Unity/Assets/Scripts/UniInterface/UEGLog.cs
2025-02-05 23:35:36 +08:00

18 lines
324 B
C#

public class UEGLog : IEssgeeLogger
{
public void Debug(string message)
{
UnityEngine.Debug.Log(message);
}
public void Warning(string message)
{
UnityEngine.Debug.LogWarning(message);
}
public void Err(string message)
{
UnityEngine.Debug.LogError(message);
}
}