Essgee.Unity/Assets/Scripts/UniInterface/UEGLog.cs
2025-01-03 01:07:11 +08:00

20 lines
344 B
C#

using UnityEngine;
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);
}
}