ILogTarget.cs 165 B

123456789
  1. using System;
  2. namespace Ryujinx.Common.Logging
  3. {
  4. public interface ILogTarget : IDisposable
  5. {
  6. void Log(object sender, LogEventArgs args);
  7. }
  8. }