Files
ryujinx-mirror/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
2023-04-27 23:51:14 +02:00

8 lines
122 B
C#

namespace Ryujinx.Common.Logging
{
interface ILogFormatter
{
string Format(LogEventArgs args);
}
}