import javax.swing.JApplet;

/**
 * @author capolsin
 *
 * Une JApplet qui lance le JFrame MonImage avec une image pour le fond
 * 
 */
public class MonImageJApplet extends JApplet{

	private static final long serialVersionUID = 10L;
	private Affiche monaffiche;
	
	
	public void init(){
		this.monaffiche = new Affiche(this.getCodeBase(), "kids01.jpg", "world.gif");
		//this.setPreferredSize(this.monaffiche.getSize());
		this.setSize(this.monaffiche.getSize());
		this.add(this.monaffiche);
	}
}
