/// <summary>
        /// Handles the importing of a single tile from a file path
        /// </summary>
        /// <param name="sender">Sender of the "click" event</param>
        /// <param name="e">Mouse Args from "click" event</param>
        private void HandleImportTile(object sender, RoutedEventArgs e)
        {
            //Select File to Load
            OpenFileDialog loadFileDialogue = new OpenFileDialog()
            {
                Filter = "Image Files (*.png;*.jpg;*.bmp)|*.png;*.jpg;*.bmp"
            };

            //If we have okayed out of the load file dialouge then add the image we have selected in to the swatch
            if (loadFileDialogue.ShowDialog() == DialogResult.OK)
            {
                swatchPanel.AddSprite(loadFileDialogue.FileName);
            }
        }