package Exo3.refuge;

public interface IAnimal {
	String getNourriture();
	String getCri();
	String getEspece();
	String getNom();
}
