mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-01 22:37:26 +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);
|
|||
|
}
|
|||
|
}
|