0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:10:44 -05:00
launcher/project/SPT.Launcher/Views/Notifications/SPTNotificationView.axaml.cs

20 lines
452 B
C#

using SPT.Launcher.ViewModels.Notifications;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
namespace SPT.Launcher.Views.Notifications
{
public partial class SPTNotificationView : ReactiveUserControl<SPTNotificationViewModel>
{
public SPTNotificationView()
{
InitializeComponent();
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}
}