mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 11:32:26 -07:00
Move solution and projects to src
This commit is contained in:
16
src/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs
Normal file
16
src/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Avalonia.Interactivity;
|
||||
using Ryujinx.Ui.App.Common;
|
||||
|
||||
namespace Ryujinx.Ava.UI.Helpers
|
||||
{
|
||||
public class ApplicationOpenedEventArgs : RoutedEventArgs
|
||||
{
|
||||
public ApplicationData Application { get; }
|
||||
|
||||
public ApplicationOpenedEventArgs(ApplicationData application, RoutedEvent routedEvent)
|
||||
{
|
||||
Application = application;
|
||||
RoutedEvent = routedEvent;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user