package re.forestier.edu.rpg;

public class Affichage {

    public static void afficherJoueur(Player player) 
    {
        System.out.println(player.toString());
    }

}
