mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
24 lines
479 B
C#
24 lines
479 B
C#
using System.Linq;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Windows.Controls;
|
|
using ReactiveUI;
|
|
using System.Windows;
|
|
using DynamicData;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for CompilerView.xaml
|
|
/// </summary>
|
|
public partial class CompilerView : ReactiveUserControl<CompilerVM>
|
|
{
|
|
public CompilerView()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
}
|
|
}
|