Package fr.raversoft.yllisanSkies.engine

Examples of fr.raversoft.yllisanSkies.engine.Screen


    public final static boolean ECRAN_DEBUG = false;

    public Jeu() throws SlickException, FileNotFoundException, IOException {
        super(ECRAN_TITRE);
        equipe = new Party();
        ecran = new Screen(ECRAN_LARGEUR, ECRAN_HAUTEUR, ECRAN_PLEIN_ECRAN, ECRAN_DEBUG);
        gameContainer = new AppGameContainer(this, ecran.getLargeur(), ecran.getHauteur(), ecran.estPleinEcran());
        menu = new Menu(this, true);
        temps = new Temps();
        sons = new Sounds();
        musiques = new MusicList();
View Full Code Here


    }

    public MainGame(String name) throws SlickException, IOException, FullPartyException {
        super(name);
        party = new Party();
        screen = new Screen(ECRAN_LARGEUR, ECRAN_HAUTEUR, ECRAN_PLEIN_ECRAN, ECRAN_DEBUG);
        time = new Temps();
        sounds = new Sounds();
        music = new MusicList();
        Hero.creerHeros();
        party.addHero(Hero.getHeros("Cyril"));
View Full Code Here

TOP

Related Classes of fr.raversoft.yllisanSkies.engine.Screen

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.