Files
BABA_YAGA/Packages/app.rive.rive-unity/Runtime/Interfaces/IDebugLogger.cs

16 lines
319 B
C#
Raw Permalink Normal View History

2026-05-19 17:39:03 +07:00
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);
}
}