aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Controls/ApplicationOpenedEventArgs.cs
blob: 9909bd6a2acbe3cf087d6d5f4530b2d7c367dde1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
    }
}