Package mage.client.dialog

Examples of mage.client.dialog.ExileZoneDialog


   
    this.stack.loadCards(game.getStack(), bigCard, gameId);
   
    for (ExileView exile: game.getExile()) {
      if (!exiles.containsKey(exile.getId())) {
        ExileZoneDialog newExile = new ExileZoneDialog();
        exiles.put(exile.getId(), newExile);
        MageFrame.getDesktop().add(newExile, JLayeredPane.POPUP_LAYER);
        newExile.show();
      }
      exiles.get(exile.getId()).loadCards(exile, bigCard, gameId);
    }
    if (game.getCombat().size() > 0) {
      MageFrame.getCombatDialog().showDialog(game.getCombat());
View Full Code Here


        GameManager.getInstance().setStackSize(game.getStack().size());
        displayStack(game, bigCard, feedbackPanel, gameId);

        for (ExileView exile: game.getExile()) {
            if (!exiles.containsKey(exile.getId())) {
                ExileZoneDialog newExile = new ExileZoneDialog();
                exiles.put(exile.getId(), newExile);
                MageFrame.getDesktop().add(newExile, JLayeredPane.MODAL_LAYER);
                newExile.show();
            }
            exiles.get(exile.getId()).loadCards(exile, bigCard, gameId);
        }
        showRevealed(game);
        showLookedAt(game);
View Full Code Here

TOP

Related Classes of mage.client.dialog.ExileZoneDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.