13 lines
245 B
C#
13 lines
245 B
C#
using Nitrox.Launcher.ViewModels;
|
|
using Nitrox.Launcher.Views.Abstract;
|
|
|
|
namespace Nitrox.Launcher.Views;
|
|
|
|
public partial class CrashWindow : WindowEx<CrashWindowViewModel>
|
|
{
|
|
public CrashWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|