Files
Nitrox/Nitrox.Launcher/Views/OptionsView.axaml.cs
2025-07-06 00:23:46 +02:00

13 lines
252 B
C#

using Nitrox.Launcher.ViewModels;
using Nitrox.Launcher.Views.Abstract;
namespace Nitrox.Launcher.Views;
public partial class OptionsView : RoutableViewBase<OptionsViewModel>
{
public OptionsView()
{
InitializeComponent();
}
}