package Environment;

import Avatars.Avatar;
import Elements.Element;
import Voies.Voie;


public interface FabriqueAbstraite {

	public Avatar creerAvatar(int choix);
	public Element creerElement(int choix);
	public Voie creerVoie(int choix);

}
