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
256 B
C#
9 lines
256 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Systems.AppLibrary
|
|
{
|
|
[JsonSerializable(typeof(IEnumerable<LdnGameData>))]
|
|
internal partial class LdnGameDataSerializerContext : JsonSerializerContext;
|
|
}
|