mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-12 17:41:07 +00:00
10 lines
286 B
C#
10 lines
286 B
C#
using Ryujinx.Common.Utilities;
|
|
|
|
namespace Ryujinx.Ava.Utilities.Configuration
|
|
{
|
|
internal static class ConfigurationFileFormatSettings
|
|
{
|
|
public static readonly ConfigurationJsonSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions());
|
|
}
|
|
}
|