16 lines
418 B
C#
16 lines
418 B
C#
|
using Avalonia.Interactivity;
|
||
|
using Ryujinx.Ui.App.Common;
|
||
|
|
||
|
namespace Ryujinx.Ava.Ui.Controls
|
||
|
{
|
||
|
public class ApplicationOpenedEventArgs : RoutedEventArgs
|
||
|
{
|
||
|
public ApplicationData Application { get; }
|
||
|
|
||
|
public ApplicationOpenedEventArgs(ApplicationData application, RoutedEvent routedEvent)
|
||
|
{
|
||
|
Application = application;
|
||
|
RoutedEvent = routedEvent;
|
||
|
}
|
||
|
}
|
||
|
}
|