diff options
Diffstat (limited to 'Ryujinx.Common/Logging/Formatters/ILogFormatter.cs')
| -rw-r--r-- | Ryujinx.Common/Logging/Formatters/ILogFormatter.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs b/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs new file mode 100644 index 00000000..9a55bc6b --- /dev/null +++ b/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs @@ -0,0 +1,7 @@ +namespace Ryujinx.Common.Logging +{ + interface ILogFormatter + { + string Format(LogEventArgs args); + } +} |
