mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-11 06:07:42 +02: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.
16 lines
427 B
C#
16 lines
427 B
C#
using Avalonia.Interactivity;
|
|
using Ryujinx.Ava.Systems.AppLibrary;
|
|
|
|
namespace Ryujinx.Ava.UI.Helpers
|
|
{
|
|
public class ApplicationOpenedEventArgs : RoutedEventArgs
|
|
{
|
|
public ApplicationData Application { get; }
|
|
|
|
public ApplicationOpenedEventArgs(ApplicationData application, RoutedEvent routedEvent)
|
|
{
|
|
Application = application;
|
|
RoutedEvent = routedEvent;
|
|
}
|
|
}
|
|
}
|