misc: chore: Move the LDN constants into a SharedConstants class

This commit is contained in:
Evan Husted
2025-02-20 19:30:00 -06:00
parent c47448628c
commit 6c6580ddcc
7 changed files with 41 additions and 33 deletions

View File

@@ -5,6 +5,14 @@ namespace Ryujinx.Ava.Utilities.AppLibrary
{
public class LdnGameDataReceivedEventArgs : EventArgs
{
public IEnumerable<LdnGameData> LdnData { get; set; }
public static new readonly LdnGameDataReceivedEventArgs Empty = new(null);
public LdnGameDataReceivedEventArgs(LdnGameData[] ldnData)
{
LdnData = ldnData ?? [];
}
public LdnGameData[] LdnData { get; set; }
}
}