mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
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.
10 lines
227 B
C#
10 lines
227 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ava.Systems.AppLibrary
|
|
{
|
|
public class ApplicationCountUpdatedEventArgs : EventArgs
|
|
{
|
|
public int NumAppsFound { get; set; }
|
|
public int NumAppsLoaded { get; set; }
|
|
}
|
|
}
|