0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-12-26 14:25:46 +00:00
ryujinx-fork/Ryujinx.Common/Logging/Targets/ILogTarget.cs

12 lines
195 B
C#
Raw Normal View History

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