mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 10:39:50 -06:00
12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
|
|
namespace Ryujinx.Common.Logging.Targets
|
|
{
|
|
public interface ILogTarget : IDisposable
|
|
{
|
|
void Log(object sender, LogEventArgs args);
|
|
|
|
string Name { get; }
|
|
}
|
|
}
|