14 lines
217 B
C#
14 lines
217 B
C#
|
|
using Avalonia.ReactiveUI;
|
||
|
|
|
||
|
|
using InkForge.Common.ViewModels;
|
||
|
|
|
||
|
|
namespace InkForge.Desktop.Views;
|
||
|
|
|
||
|
|
public partial class MainWindow : ReactiveWindow<AppViewModel>
|
||
|
|
{
|
||
|
|
public MainWindow()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|