mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-16 07:22:42 +00:00
12 lines
195 B
C#
12 lines
195 B
C#
using System;
|
|
|
|
namespace Ryujinx.Common.Logging
|
|
{
|
|
public interface ILogTarget : IDisposable
|
|
{
|
|
void Log(object sender, LogEventArgs args);
|
|
|
|
string Name { get; }
|
|
}
|
|
}
|