public class Personnage {
    int lig, col;
    boolean dir; // true = droite
    // point de vie, inventaire...

    boolean getDir() { return this.dir; }

    void deplace(int lig, int col) {
        this.lig = lig;
        this.col = col;
    }

    int getLig() { return this.lig; }
    int getCol() { return this.col; }
}
