aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Logging/Targets/ILogTarget.cs
blob: 261c5e64b249429128875f5b2e4671179371b797 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System;

namespace Ryujinx.Common.Logging
{
    public interface ILogTarget : IDisposable
    {
        void Log(object sender, LogEventArgs args);
    }
}