Interaction logic for ShipSelector.xaml
Наследование: System.Windows.Window
        void UserShipSelect()
        {

            ShipSelector win = new ShipSelector(ships);
            if (win.ShowDialog() == true)
            {
                SelectedShip = win.SelectedShip;
                if (ShipSelected != null)
                {
                    ShipSelected(this, EventArgs.Empty);
                }
            }

        }