Package vues.commun

Examples of vues.commun.Panel_AjoutTour


   
        // Info jeu et joueur
    panelInfoJoueurEtPartie = new Panel_InfosJoueurEtPartie(jeu, ModeDeJeu.MODE_VERSUS);
   
    // Ajout de tour
    panelAjoutTour = new Panel_AjoutTour(jeu, this, LARGEUR_MENU_DROITE, 80);
   
    // Selection (tour et créature)
        panelSelection = new Panel_Selection(jeu, this);
       
        // Conteneur en onglets
View Full Code Here


        pToursEtJoueur.setOpaque(false);
   
        pInfosJoueurEtPartie = new Panel_InfosJoueurEtPartie(jeu, ModeDeJeu.MODE_SOLO);
        pToursEtJoueur.add(pInfosJoueurEtPartie,BorderLayout.NORTH);
       
        pAjoutTour = new Panel_AjoutTour(jeu, edpt, 280, 80);
        pToursEtJoueur.add(pAjoutTour,BorderLayout.SOUTH);
   
      add(pToursEtJoueur,BorderLayout.NORTH);
   
      pSelection = new Panel_Selection(jeu, edpt);
View Full Code Here

TOP

Related Classes of vues.commun.Panel_AjoutTour

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.