mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-11 16:36:58 +00:00
Moved AppLibrary, Configuration, and PlayReport namespaces to Ryujinx.Systems, add the compat list stuff in the base Ryujinx.Systems namespace. Moved the compatibility UI stuff to the proper UI view/viewmodel folders.
9 lines
284 B
C#
9 lines
284 B
C#
using Ryujinx.Common.Utilities;
|
|
|
|
namespace Ryujinx.Ava.Systems.Configuration
|
|
{
|
|
internal static class ConfigurationFileFormatSettings
|
|
{
|
|
public static readonly ConfigurationJsonSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions());
|
|
}
|
|
}
|