mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
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.
17 lines
350 B
C#
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();
|
|
}
|
|
}
|
|
}
|