diff --git a/osrs-toolbox/Controls/ToolboxWindow.xaml b/osrs-toolbox/Controls/ToolboxWindow.xaml new file mode 100644 index 0000000..6613326 --- /dev/null +++ b/osrs-toolbox/Controls/ToolboxWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/osrs-toolbox/Controls/ToolboxWindow.xaml.cs b/osrs-toolbox/Controls/ToolboxWindow.xaml.cs new file mode 100644 index 0000000..1f9961c --- /dev/null +++ b/osrs-toolbox/Controls/ToolboxWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace osrs_toolbox +{ + /// + /// Interaction logic for ToolboxWindow.xaml + /// + public partial class ToolboxWindow : UserControl + { + public ToolboxWindow() + { + InitializeComponent(); + } + } +}