Package vues.commun

Examples of vues.commun.Panel_InfosJoueurEtPartie


        //--------------------
        //-- Menu de droite --
        //--------------------
   
        // 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)
View Full Code Here


    //---------------------
   
    JPanel pToursEtJoueur = new JPanel(new BorderLayout());
        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);
   
View Full Code Here

TOP

Related Classes of vues.commun.Panel_InfosJoueurEtPartie

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.