ILogFormatter.cs 122 B

1234567
  1. namespace Ryujinx.Common.Logging
  2. {
  3. interface ILogFormatter
  4. {
  5. string Format(LogEventArgs args);
  6. }
  7. }