[feat:] forgot to git-add the wiki source files... here they are

This commit is contained in:
2026-01-13 18:33:35 +01:00
parent aeb4092f28
commit 99b35c0aaf
7 changed files with 279 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
using Avalonia.Controls;
namespace Logof_Client.Wiki;
public partial class EditorWindow : Window
{
private void InitializeComponent()
{
Avalonia.Markup.Xaml.AvaloniaXamlLoader.Load(this);
}
public EditorWindow()
{
InitializeComponent();
}
}