public class Jeu {
    Carte carte;
    Personnage[] personnages;

    public void joue(Personnage p) {
        int l = p.getLig();
        int c = p.getCol();
        int newc = c + (p.getDir() ? +1 : -1);
        if (this.carte.estLibre(l, newc)) {
            this.carte.deplace(p, l, newc);
            p.deplace(l, newc);
        } else {
            ...
        }
    }
    
}
