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