mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-18 12:12:54 +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());
|
|
}
|
|
}
|