public final static boolean ECRAN_PLEIN_ECRAN = false;
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();