private void Button_Click(object sender, RoutedEventArgs e)
 {
     GamesProcess game = new GamesProcess();
     CreateNewHumanPlayer cr = new CreateNewHumanPlayer(game);
     cr.Show();
     this.Close();
 }
 public CreateNewHumanPlayer(GamesProcess game)
 {
     InitializeComponent();
     this.game = game;
 }