1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-09-01 08:36:26 -05:00
Files
ryujinx/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);
}
}