mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
23 lines
586 B
C#
23 lines
586 B
C#
using System;
|
|
using System.Windows;
|
|
using Bloxstrap.ViewModels;
|
|
|
|
namespace Bloxstrap.Views.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for IntegrationsPage.xaml
|
|
/// </summary>
|
|
public partial class IntegrationsPage
|
|
{
|
|
public IntegrationsPage()
|
|
{
|
|
DataContext = new IntegrationsViewModel(this);
|
|
InitializeComponent();
|
|
|
|
// rbxfpsunlocker does not have 64 bit support
|
|
if (!Environment.Is64BitOperatingSystem)
|
|
this.RbxFpsUnlockerOptions.Visibility = Visibility.Collapsed;
|
|
}
|
|
}
|
|
}
|