Ejemplo n.º 1
0
        private void Machine_Click(object sender, RoutedEventArgs e)
        {
            Complication dialog = Complication.MachineSpirit(Starship);

            dialog.ShowDialog();
            UpdateMachine();
        }
Ejemplo n.º 2
0
 private void History_Click(object sender, RoutedEventArgs e)
 {
     if (Starship.Hull == null || Starship.Hull.History == ShipHistory.None)
     {
         Complication dialog = Complication.ShipHistory(Starship);
         dialog.ShowDialog();
         UpdateHistory();
     }
 }