1
Fork 0
mirror of https://github.com/Steffo99/unimore-oop-2020-cleaver.git synced 2024-11-29 11:34:17 +00:00
oop-2020-steffo-cleaver/src/eu/steffo/cleaver/Main.java

14 lines
281 B
Java
Raw Normal View History

2019-12-05 00:05:10 +00:00
package eu.steffo.cleaver;
import javax.swing.*;
2019-12-06 01:14:13 +00:00
import eu.steffo.cleaver.gui.Frame;
2019-12-05 00:05:10 +00:00
public class Main {
public static void main(String[] args) {
2019-12-06 01:14:13 +00:00
Frame cf = new Frame();
2019-12-05 00:05:10 +00:00
cf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
cf.setVisible(true);
}
}