bloxstrap/Bloxstrap/UI/Elements/Settings/Pages/ModsPage.xaml.cs
pizzaboxer e6f70a0c82
Remove option for disabling fullscreen optimizations
The option was only introduced because Roblox's installation path wasn't static. Now that it is, this option doesn't need to exist anymore, and it isn't an issue for people to just set it manually now.
2024-09-06 19:45:52 +01:00

17 lines
350 B
C#

using Bloxstrap.UI.ViewModels.Settings;
namespace Bloxstrap.UI.Elements.Settings.Pages
{
/// <summary>
/// Interaction logic for ModsPage.xaml
/// </summary>
public partial class ModsPage
{
public ModsPage()
{
DataContext = new ModsViewModel();
InitializeComponent();
}
}
}