Essgee.Unity/Assets/Scripts/UEssgeeInterface/UEGLog.cs

18 lines
324 B
C#
Raw Permalink Normal View History

2025-01-03 01:07:11 +08:00
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);
}
}