ILogTarget.cs 195 B

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