package inutile;
import javax.swing.*;

import IHM.IHMPlateau;
public class testPlateau {
	public static void main(String[]args){
		JFrame f=new JFrame("Plateau de monopoly");
		IHMPlateau p = new IHMPlateau();
		f.setSize(700, 700);
		f.add(p);
		f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		f.setVisible(true);
	}
}
