Made MainWindow referenceable from other windows.

This commit is contained in:
2025-05-22 07:51:20 -04:00
parent 8e6edbe6ed
commit 18833df637

View File

@@ -16,9 +16,12 @@ namespace osrs_toolbox
/// </summary>
public partial class MainWindow : Window
{
public static MainWindow Current;
public MainWindow()
{
InitializeComponent();
Current = this;
}
}
}