Files
BABA_YAGA/Packages/app.rive.rive-unity/Runtime/Interfaces/IDebugLogger.cs
2026-05-19 17:39:03 +07:00

16 lines
319 B
C#

namespace Rive
{
/// <summary>
/// Interface for logging debug messages.
/// </summary>
public interface IDebugLogger
{
void Log(string message);
void LogWarning(string message);
void LogError(string message);
void LogException(System.Exception exception);
}
}