centrer position initiale joueur

This commit is contained in:
diane 2023-05-01 17:37:36 +02:00
parent 27a8d8a25c
commit 61c9cf07f4
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ import model.*;
public class ControleurJeu extends Thread {
private static final int GAME_SPEED = 1000;
private static final int POS_INITIALE_JOUEUR_X = Plateau.TAILLE_X / 2 + 1;
private static final int POS_INITIALE_JOUEUR_Y = Plateau.TAILLE_Y / 2 + 1;
private static final int POS_INITIALE_JOUEUR_X = Plateau.TAILLE_X / 2 ;
private static final int POS_INITIALE_JOUEUR_Y = Plateau.TAILLE_Y / 2 ;
private static final int VIES_INIT = Joueur.VIE_MAX;
private static final int SCORE_ATTAQUE_INIT = Joueur.ATTAQUE_MAX / 2;