mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
20 lines
398 B
C#
20 lines
398 B
C#
|
using Aki.Launcher.ViewModels;
|
||
|
using Avalonia;
|
||
|
using Avalonia.Controls;
|
||
|
using Avalonia.Markup.Xaml;
|
||
|
using Avalonia.ReactiveUI;
|
||
|
|
||
|
namespace Aki.Launcher.Views;
|
||
|
|
||
|
public partial class ModInfoView : ReactiveUserControl<ModInfoViewModel>
|
||
|
{
|
||
|
public ModInfoView()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void InitializeComponent()
|
||
|
{
|
||
|
AvaloniaXamlLoader.Load(this);
|
||
|
}
|
||
|
}
|