mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-21 09:10:18 +00:00
16 lines
No EOL
420 B
C#
16 lines
No EOL
420 B
C#
using Avalonia.Interactivity;
|
|
using Ryujinx.Ui.App.Common;
|
|
|
|
namespace Ryujinx.Ava.Ui.Controls
|
|
{
|
|
internal class ApplicationOpenedEventArgs : RoutedEventArgs
|
|
{
|
|
public ApplicationData Application { get; }
|
|
|
|
public ApplicationOpenedEventArgs(ApplicationData application, RoutedEvent routedEvent)
|
|
{
|
|
Application = application;
|
|
RoutedEvent = routedEvent;
|
|
}
|
|
}
|
|
} |