Package models.creatures

Examples of models.creatures.VagueDeCreatures


        setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));

        int noVague = jeu.getNumVagueCourante();
        for(int i=noVague;i<noVague+10;i++)
        {
            VagueDeCreatures vague = jeu.getTerrain().getVagueDeCreatures(i);
           
            JPanel panelVague = new JPanel();
            panelVague.setOpaque(false);
           
            Creature c = vague.getNouvelleCreature();
           
            JLabel lNoVague = new JLabel(i+".");
            panelVague.add(lNoVague);
           
            JLabel lQ = new JLabel(vague.getNbCreatures()+"x");
            panelVague.add(lQ);
           
//            JLabel lNom = new JLabel(c.getNom());
//            panelVague.add(lNom);
           
View Full Code Here

TOP

Related Classes of models.creatures.VagueDeCreatures

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.