mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:48:35 +00:00
7b0576db71
* 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
10 lines
210 B
C#
10 lines
210 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui
|
|
{
|
|
public class ApplicationCountUpdatedEventArgs : EventArgs
|
|
{
|
|
public int NumAppsFound { get; set; }
|
|
public int NumAppsLoaded { get; set; }
|
|
}
|
|
} |