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.
19 lines
449 B
C#
19 lines
449 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Ava.Systems.AppLibrary
|
|
{
|
|
public class LdnGameDataReceivedEventArgs : EventArgs
|
|
{
|
|
public static new readonly LdnGameDataReceivedEventArgs Empty = new(null);
|
|
|
|
public LdnGameDataReceivedEventArgs(LdnGameData[] ldnData)
|
|
{
|
|
LdnData = ldnData ?? [];
|
|
}
|
|
|
|
|
|
public LdnGameData[] LdnData { get; set; }
|
|
}
|
|
}
|