mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 02:01:14 +02:00
* Fix application list * Convert file extensions to lowercase before comparing * AcK's requested changes * fixed bug found by gdkchan's requested changes * Account for mismatch between LibHac.TitleLanguage and ...System.Language
9 lines
162 B
C#
9 lines
162 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui
|
|
{
|
|
public class ApplicationAddedEventArgs : EventArgs
|
|
{
|
|
public ApplicationData AppData { get; set; }
|
|
}
|
|
} |