Files
Ryujinx/src/Ryujinx.Common/Logging/Targets/ILogTarget.cs
2023-04-27 23:51:14 +02:00

12 lines
195 B
C#

using System;
namespace Ryujinx.Common.Logging
{
public interface ILogTarget : IDisposable
{
void Log(object sender, LogEventArgs args);
string Name { get; }
}
}