mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 04:18:38 +00:00
10 lines
165 B
C#
10 lines
165 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Logging
|
|||
|
{
|
|||
|
public interface ILogTarget : IDisposable
|
|||
|
{
|
|||
|
void Log(object sender, LogEventArgs args);
|
|||
|
}
|
|||
|
}
|