package packDeco;

public class CoucheSucre extends Couche
{
	public CoucheSucre (Patisserie pPat)
	{
		super(pPat);
		this.nom = "\tAvec une couche de sucre\n";
	}
}
