This commit is contained in:
martins 2022-10-24 22:09:10 +02:00
parent 5852f31cd2
commit 1408f8e39e

View File

@ -1,14 +1,11 @@
package fr.iutfbleau.projetAgile;
import javax.swing.*;
import java.awt.*;
import fr.iutfbleau.projetAgile.Menu.View.Menu;
public class Main {
public static void main(String[] args) {
JFrame frame = Menu.getFrame();
frame.setLocation(200, 200);
frame.setSize(new Dimension(1280,720));
JPanel menu=Menu.InitMenu();
frame.add(menu, Menu.MENU);
frame.setVisible(true);