1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 10:06:46 -06:00

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; }
}
}